From 5999acd24a4f203292be36e0fd18d385887ec481 Mon Sep 17 00:00:00 2001 From: Said Aspen Date: Tue, 14 Apr 2020 10:13:20 +0200 Subject: feat: Add exercise variables6 covering const (#352) --- exercises/variables/variables6.rs | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 exercises/variables/variables6.rs (limited to 'exercises') 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); +} -- cgit v1.2.3