RosettaCodeData/Task/Tokenize-a-string/Quackery/tokenize-a-string.quackery
2023-07-01 13:44:08 -04:00

10 lines
263 B
Text

[ [] [] rot
witheach
[ dup char , = iff
[ drop nested join [] ]
else join ]
nested join ] is tokenise ( $ --> [ )
[ witheach [ echo$ say "." ] ] is display ( [ --> )
$ "Hello,How,Are,You,Today" tokenise display