1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2024-11-21 13:25:53 +02:00

Put “Bye!” message on its own line (#2431)

Before the message would be printed right next to the text echoed
back. We now make sure to print it after a blank line.
This commit is contained in:
Martin Geisler 2024-10-18 03:04:19 -04:00 committed by GitHub
parent 0f00434a0f
commit 1a9941b39f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -50,7 +50,7 @@ extern "C" fn main(x0: u64, x1: u64, x2: u64, x3: u64) {
}
}
writeln!(uart, "Bye!").unwrap();
writeln!(uart, "\n\nBye!").unwrap();
system_off::<Hvc>().unwrap();
}
// ANCHOR_END: main