diff options
| author | Said Aspen <mail@saidaspen.se> | 2020-04-14 10:13:20 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-04-14 10:13:20 +0200 |
| commit | 5999acd24a4f203292be36e0fd18d385887ec481 (patch) | |
| tree | f2eeebedf15fe24de1b44f0fdd8414b10708408a /exercises | |
| parent | 59f56b24d965ef0ab4da74237d6ef828c2f4f848 (diff) | |
feat: Add exercise variables6 covering const (#352)
Diffstat (limited to 'exercises')
| -rw-r--r-- | exercises/variables/variables6.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/exercises/variables/variables6.rs b/exercises/variables/variables6.rs new file mode 100644 index 0000000..76afa85 --- /dev/null +++ b/exercises/variables/variables6.rs @@ -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); +} |
