spl/echo.spl
2023-08-04 20:52:12 +02:00

10 lines
164 B
Text

func main { mega | with args ;
2 args:iter:skip =args
{ | with item ;
item print
" " print
} args:foreach
"\n" print
0 exit
}