9 lines
86 B
Text
9 lines
86 B
Text
integer i;
|
|
|
|
i = 0;
|
|
while (i < 10) {
|
|
o_winteger(2, i);
|
|
i += 2;
|
|
}
|
|
|
|
o_newline();
|