20 lines
196 B
Text
20 lines
196 B
Text
void
|
|
f(...)
|
|
{
|
|
integer i;
|
|
|
|
i = 0;
|
|
while (i < count()) {
|
|
o_text($i);
|
|
o_byte('\n');
|
|
i += 1;
|
|
}
|
|
}
|
|
|
|
integer
|
|
main(void)
|
|
{
|
|
f("Mary", "had", "a", "little", "lamb");
|
|
|
|
return 0;
|
|
}
|