9 lines
122 B
Text
9 lines
122 B
Text
|
|
include "cowgol.coh";
|
||
|
|
|
||
|
|
var n: uint32 := 1;
|
||
|
|
while n != 0 loop;
|
||
|
|
print_i32(n);
|
||
|
|
print_nl();
|
||
|
|
n := n + 1;
|
||
|
|
end loop;
|