mirror of
https://github.com/rust-lang/rustlings
synced 2024-11-10 06:34:20 +00:00
Improve the placement of TODO comments
This commit is contained in:
parent
95f10c8068
commit
d3a0c26999
3 changed files with 3 additions and 5 deletions
|
@ -1,5 +1,5 @@
|
|||
// We sometimes encourage you to keep trying things on a given exercise, even
|
||||
// after you already figured it out. If you got everything working and feel
|
||||
// TODO: We sometimes encourage you to keep trying things on a given exercise,
|
||||
// even after you already figured it out. If you got everything working and feel
|
||||
// ready for the next exercise, enter `n` in the terminal.
|
||||
//
|
||||
// The exercise file will be reloaded when you change one of the lines below!
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
// TODO: Fix the code to print "Hello world!".
|
||||
|
||||
fn main() {
|
||||
// TODO: Fix the code to print "Hello world!".
|
||||
printline!("Hello world!");
|
||||
}
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
// TODO: Fix the compiler error.
|
||||
|
||||
fn main() {
|
||||
let x = 3;
|
||||
println!("Number {x}");
|
||||
|
|
Loading…
Reference in a new issue