SHOW
Syntax SHOW object 
(SHOW object1 object2 ...) 
 
 
Explanation SHOW prints its input to the output stream, followed by a carriage return. SHOW leaves list brackets intact and prints them. Unless the output stream has been redirected, SHOW normally prints its inputs in the Listener window and moves the cursor to the beginning of the next line.

See also PRINT and TYPE.
 

Examples SHOW "HELLO 
HELLO 
SHOW [NICE DAY] 
[NICE DAY] 
SHOW [[LIST] [OF] [LISTS]] 
[[LIST] [OF] [LISTS]] 
PRINT [[LIST] [OF] [LISTS]] 
[LIST] [OF] [LISTS] 
(SHOW "TWO "WORDS) 
TWO WORDS 

TopIndex