lvars list; sysparse_string('one 1 two 2 three 3 four 4', true) -> list; ;;; print the list of strings and numbers list => ** [one 1 two 2 three 3 four 4] ;;; check that first item is a string and second an integer isstring(list(1))=> ** isinteger(list(2))=> **