LAST thing
If thing
is a word, outputs the last character of the word.
If thing
is a list, outputs the last member of the list.
LAST throws a bad input error if given the empty list, the empty string, or an array.
SHOW LAST [1 2 3]
3
SHOW LAST "Hello
o