This repository has been archived on 2021-02-16. You can view files and clone it, but cannot push or open issues or pull requests.
hello-world/rust.rs

6 lines
80 B
Rust
Raw Normal View History

2020-11-26 21:24:20 -06:00
fn main() {
for i in 0..6 {
println!("Hello world, {}", i);
}
}