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 *.swp
exercises/
exercises/**/!*.rs exercises/**/!*.rs
target/ target/
**/*.rs.bk **/*.rs.bk

Binary file not shown.

Binary file not shown.

View File

@ -1,9 +1,11 @@
// variables6.rs // variables6.rs
// Make me compile! Execute the command `rustlings hint variables6` if you want a hint :) // 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() { fn main() {
println!("Number {}", NUMBER); println!("Number {}", NUMBER);
} }