forked from ground/ground
13 lines
238 B
Plaintext
13 lines
238 B
Plaintext
|
#!/usr/bin/env ground
|
||
|
stdlnout "Program args: "
|
||
|
getlistsize *args &argsSize
|
||
|
set &counter 0
|
||
|
@loopstart
|
||
|
equal $counter $argsSize &bool
|
||
|
if $bool %end
|
||
|
getlistat *args $counter &item
|
||
|
stdlnout $item
|
||
|
add 1 $counter &counter
|
||
|
jump %loopstart
|
||
|
@end
|