7 lines
103 B
Text
7 lines
103 B
Text
let () =
|
|
let i = ref 0 in
|
|
while true do
|
|
print_int !i;
|
|
print_newline ();
|
|
incr i;
|
|
done
|