4 lines
69 B
OCaml
4 lines
69 B
OCaml
let () =
|
|
for i = 0 to max_int do
|
|
Printf.printf "%o\n" i
|
|
done
|