feat: Add exercise variables6 covering const (#352)

This commit is contained in:
Said Aspen
2020-04-14 10:13:20 +02:00
committed by GitHub
parent 59f56b24d9
commit 5999acd24a
2 changed files with 24 additions and 0 deletions

View File

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