Files
2026-07-09 02:59:53 +03:00

7 lines
107 B
Rust

fn main() {
//let _x = 0;
for _x in 1..5{
println!("Hello, world! {}", _x);
}
}