LPUT
Syntax LPUT object1 object2 
 
Explanation

LPUT reports a new object that is created by placing the first input at the end of the second input.

The inputs to LPUT can be either words or lists. If the first input is a list, the second cannot be a word. If both inputs are words, LPUT reports a word.

See also FPUT, LIST, SENTENCE, and WORD.

Examples LPUT "ISSIPPI "MISS 
Result: MISSISSIPPI 
LPUT [COLORADO] [MISS] 
Result: [MISS [COLORADO]] 
LPUT [GREEN] "BLUE 
The procedure LPUT needs a list as its second input. 
LPUT FIRST [X Y Z] [A B C D] 
Result: [A B C D X] 

TopIndex