mirror of
https://github.com/LukasKalbertodt/programmieren-in-rust.git
synced 2024-11-18 02:48:58 +01:00
305 B
Executable File
305 B
Executable File
Aufgabe 1: Wie mit Rubby
Ich möchte, dass dieser Rust-Code funktioniert:
3.times(|i| {
println!("Ferris ate {} cookies", i);
});
Er soll ausgeben:
Ferris ate 0 cookies
Ferris ate 1 cookies
Ferris ate 2 cookies
Macht, dass es funktioniert! Irgendwie!