This commit is contained in:
blacktoast 2021-09-28 05:54:31 +00:00
parent c2ae843e4b
commit 30b4480ca3
4 changed files with 5 additions and 2 deletions

1
.gitignore vendored
View File

@ -1,4 +1,5 @@
*.swp
exercises/
exercises/**/!*.rs
target/
**/*.rs.bk

Binary file not shown.

Binary file not shown.

View File

@ -1,9 +1,11 @@
// variables6.rs
// Make me compile! Execute the command `rustlings hint variables6` if you want a hint :)
// I AM NOT DONE
/*
I AM NOT DONE
*/
const NUMBER=1;
const NUMBER = 3;
fn main() {
println!("Number {}", NUMBER);
}