Concatenation
Concatenation is a binary operation in which two strings are joined together, creating one larger string, one following the other. In Lua, the concatenation operator is written ... 
Properties
    
Concatenation is associative, meaning that , where is the concatenation operator. However, it is not commutative, meaning that .
Example
    
print("hello" .. " world" .. "!")
This will output hello world!.
gollark: But apparently it takes 500 milliseconds to render a few hundred kilobytes of markdown content, so now I have to figure out how firefox's profiler works.
gollark: When you hover over a link, it automagically™ downloads the associated content using advanced onmouseover technology.
gollark: I've managed to significantly improve minoteaur performance by implementing prefetching.
gollark: > a-pc
gollark: <:bees:724389994663247974> (stealing the emoji)
    This article is issued from Computercraft. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.