Difference between revisions of "Concatenation"

From ComputerCraft Wiki
Jump to: navigation, search
(\/)
m (Fixed grammatical error)
 
Line 1: Line 1:
Concatenation is the process, in which you combine one or more strings.
+
Concatenation is the process in which you combine one or more strings.
  
 
To concatenate a string you use two periods.
 
To concatenate a string you use two periods.

Latest revision as of 21:02, 11 April 2013

Concatenation is the process in which you combine one or more strings.

To concatenate a string you use two periods.


Grid paper.png  Example
Concatenating strings.
Code
print("Hello ".."World".."!")
Output Hello world!