6 lines
226 B
Text
6 lines
226 B
Text
lvars numbers;
|
|
{% sys_parse_string('100 101 102 103 99.9 99.999', strnumber) %} -> numbers;
|
|
;;; the result is a vector containing integers and floats,
|
|
;;; which can be printed thus:
|
|
numbers =>
|
|
** {100 101 102 103 99.9 99.999}
|