RosettaCodeData/Task/Tokenize-a-string/Pop11/tokenize-a-string-1.pop11
2023-07-01 13:44:08 -04:00

6 lines
195 B
Text

;;; Make a list of strings from a string using space as separator
lvars list;
sysparse_string('the cat sat on the mat') -> list;
;;; print the list of strings
list =>
** [the cat sat on the mat]