5 lines
68 B
Rust
5 lines
68 B
Rust
fn main() {
|
|
for i in 0..8 {
|
|
println!("{:b}", i)
|
|
}
|
|
}
|