From b4779c5ea1360ef1aa609fc25ad9f75089d59d9f Mon Sep 17 00:00:00 2001 From: Rock070 Date: Fri, 15 Dec 2023 01:59:53 +0800 Subject: [PATCH] Fix printline to println in intro2.rs --- exercises/00_intro/intro2.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/exercises/00_intro/intro2.rs b/exercises/00_intro/intro2.rs index a28ad3dc..abb578c6 100644 --- a/exercises/00_intro/intro2.rs +++ b/exercises/00_intro/intro2.rs @@ -5,8 +5,7 @@ // Execute `rustlings hint intro2` or use the `hint` watch subcommand for a // hint. -// I AM NOT DONE fn main() { - printline!("Hello there!") + println!("Hello there!") }