5 lines
83 B
Text
5 lines
83 B
Text
fn main() {
|
|
for i in 0..std::usize::MAX {
|
|
println!("{:o}", i);
|
|
}
|
|
}
|