spl/echo.spl

10 lines
164 B
Text
Raw Normal View History

2023-08-04 20:42:43 +02:00
func main { mega | with args ;
2 args:iter:skip =args
{ | with item ;
item print
" " print
} args:foreach
"\n" print
0 exit
}