Update intro2.rs

Dans ce code comme dans le premier l'erreur était qu'il manquait un ;
This commit is contained in:
Medinand PANDI 2024-06-06 06:09:24 +02:00 committed by GitHub
parent d140d49b61
commit 78b3515c05
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -5,8 +5,8 @@
// Execute `rustlings hint intro2` or use the `hint` watch subcommand for a
// hint.
// I AM NOT DONE
//Dans ce code comme dans le premier l'erreur était qu'il manquait un ; après le printline! (le dernier pour l'intro1.rs)
fn main() {
printline!("Hello there!")
printline!("Hello there!");
}