mirror of
https://github.com/rust-lang/rustlings.git
synced 2026-01-10 12:49:18 +00:00
Zum Commit vorgemerkte Änderungen: geändert: exercises/00_intro/intro1.rs geändert: exercises/00_intro/intro2.rs geändert: exercises/01_variables/variables1.rs geändert: exercises/01_variables/variables2.rs geändert: exercises/01_variables/variables3.rs geändert: exercises/01_variables/variables4.rs geändert: exercises/01_variables/variables5.rs geändert: exercises/01_variables/variables6.rs geändert: exercises/02_functions/functions1.rs geändert: exercises/02_functions/functions2.rs geändert: exercises/02_functions/functions3.rs geändert: exercises/02_functions/functions4.rs geändert: exercises/02_functions/functions5.rs geändert: exercises/03_if/if1.rs geändert: exercises/03_if/if2.rs geändert: exercises/03_if/if3.rs geändert: exercises/04_primitive_types/primitive_types1.rs geändert: exercises/04_primitive_types/primitive_types2.rs geändert: exercises/04_primitive_types/primitive_types3.rs geändert: exercises/04_primitive_types/primitive_types4.rs geändert: exercises/04_primitive_types/primitive_types5.rs geändert: exercises/04_primitive_types/primitive_types6.rs geändert: exercises/05_vecs/vecs1.rs geändert: exercises/05_vecs/vecs2.rs geändert: exercises/06_move_semantics/move_semantics1.rs geändert: exercises/06_move_semantics/move_semantics2.rs geändert: exercises/06_move_semantics/move_semantics3.rs geändert: exercises/06_move_semantics/move_semantics4.rs geändert: exercises/06_move_semantics/move_semantics5.rs geändert: exercises/06_move_semantics/move_semantics6.rs geändert: exercises/07_structs/structs1.rs geändert: exercises/07_structs/structs2.rs geändert: exercises/quiz1.rs neue Datei: rustlings
40 lines
1.8 KiB
Rust
40 lines
1.8 KiB
Rust
// intro1.rs
|
|
//
|
|
// About this `I AM NOT DONE` thing:
|
|
// 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, remove the `I AM NOT DONE` comment below.
|
|
//
|
|
// If you're running this using `rustlings watch`: The exercise file will be
|
|
// reloaded when you change one of the lines below! Try adding a `println!`
|
|
// line, or try changing what it outputs in your terminal. Try removing a
|
|
// semicolon and see what happens!
|
|
//
|
|
// Execute `rustlings hint intro1` or use the `hint` watch subcommand for a
|
|
// hint.
|
|
|
|
fn main() {
|
|
println!("Hello and");
|
|
println!(r#" welcome to... "#);
|
|
println!(r#" _ _ _ "#);
|
|
println!(r#" _ __ _ _ ___| |_| (_)_ __ __ _ ___ "#);
|
|
println!(r#" | '__| | | / __| __| | | '_ \ / _` / __| "#);
|
|
println!(r#" | | | |_| \__ \ |_| | | | | | (_| \__ \ "#);
|
|
println!(r#" |_| \__,_|___/\__|_|_|_| |_|\__, |___/ "#);
|
|
println!(r#" |___/ "#);
|
|
println!();
|
|
println!("This exercise compiles successfully. The remaining exercises contain a compiler");
|
|
println!("or logic error. The central concept behind Rustlings is to fix these errors and");
|
|
println!("solve the exercises. Good luck!");
|
|
println!();
|
|
println!("The source for this exercise is in `exercises/00_intro/intro1.rs`. Have a look!");
|
|
println!(
|
|
"Going forward, the source of the exercises will always be in the success/failure output."
|
|
);
|
|
println!();
|
|
println!(
|
|
"If you want to use rust-analyzer, Rust's LSP implementation, make sure your editor is set"
|
|
);
|
|
println!("up, and then run `rustlings lsp` before continuing.")
|
|
}
|