2019-10-08 23:01:03 +08:00

8 lines
126 B
Rust

fn main() {
for i in 0..8 {
let s = format!("Hello, {}", i);
println!("{}", s);
}
panic!("OK");
}