SENTENCE (SE)
Syntax SENTENCE object1 object2 
SE object1 object2 
(SENTENCE object1 object2 object3 ...) 
 
Explanation SENTENCE reports a list made up of its inputs. SENTENCE expects two inputs, but will accept more if it and all of its inputs are enclosed in parentheses.

If the inputs to SENTENCE are lists, their brackets are removed and combined into one list.

See also LIST, FPUT, LPUT, and WORD.

Examples SENTENCE "NICEST "MONTH 
Result: [NICEST MONTH] 
SENTENCE [NICEST] [MONTH] 
Result: [NICEST MONTH] 
SENTENCE [APRIL IS THE][NICEST MONTH] 
Result: [APRIL IS THE NICEST MONTH] 
(SENTENCE "APRIL "IS "THE "NICEST "MONTH) 
Result: [APRIL IS THE NICEST MONTH] 

TopIndex