RosettaCodeData/Task/Tokenize-a-string/Pop11/tokenize-a-string-1.pop11

7 lines
195 B
Plaintext

;;; 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]