8 lines
93 B
Text
8 lines
93 B
Text
integer i;
|
|
|
|
i = 0;
|
|
while (i < argc()) {
|
|
o_text(argv(i));
|
|
o_byte('\n');
|
|
i += 1;
|
|
}
|