6 lines
195 B
Text
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]
|