// hoch zählen // // https://doc.rust-lang.org/book/iterators.html // fn main() { for x in 0..10 { println!("{}", x); } }