diff options
| -rw-r--r-- | exercises/00_intro/intro2.rs | 2 | ||||
| -rw-r--r-- | info.toml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/exercises/00_intro/intro2.rs b/exercises/00_intro/intro2.rs index 990b20f..a28ad3d 100644 --- a/exercises/00_intro/intro2.rs +++ b/exercises/00_intro/intro2.rs @@ -8,5 +8,5 @@ // I AM NOT DONE fn main() { - println!("Hello {}!"); + printline!("Hello there!") } @@ -13,7 +13,7 @@ name = "intro2" path = "exercises/00_intro/intro2.rs" mode = "compile" hint = """ -Add an argument after the format string.""" +The compiler is informing us that we've got the name of the print macro wrong, and has suggested an alternative.""" # VARIABLES |
