7 lines
107 B
Rust
7 lines
107 B
Rust
fn main() {
|
|
//let _x = 0;
|
|
for _x in 1..5{
|
|
println!("Hello, world! {}", _x);
|
|
}
|
|
|
|
} |