Add sheet 8

This commit is contained in:
Lukas Kalbertodt
2016-12-15 20:57:31 +01:00
parent 862c1d3259
commit e1fcec9341
4 changed files with 249 additions and 0 deletions

20
aufgaben/sheet8/task1/README.md Executable file
View File

@ -0,0 +1,20 @@
Aufgabe 1: Wie mit Rubby
========================
Ich möchte, dass dieser Rust-Code funktioniert:
```rust
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!