From 81edc4234fbe40eee34f83bbc2995c69f9e1e07c Mon Sep 17 00:00:00 2001 From: mokou Date: Mon, 11 Jul 2022 13:43:41 +0200 Subject: fix(variables): reorder and redo hint texts --- exercises/variables/variables2.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'exercises/variables/variables2.rs') diff --git a/exercises/variables/variables2.rs b/exercises/variables/variables2.rs index 7774a8f..641aeb8 100644 --- a/exercises/variables/variables2.rs +++ b/exercises/variables/variables2.rs @@ -1,13 +1,13 @@ // variables2.rs -// Make me compile! Execute the command `rustlings hint variables2` if you want a hint :) +// Execute `rustlings hint variables2` or use the `hint` watch subcommand for a hint. // I AM NOT DONE fn main() { let x; if x == 10 { - println!("Ten!"); + println!("x is ten!"); } else { - println!("Not ten!"); + println!("x is not ten!"); } } -- cgit v1.2.3