I have a very simple problem: how do I add two strings together? So if I added "over " and "there" together I would get "over there"?
Using the .. operator.
string1 = "Hello " string2 = "World!" print (string1..string2)
Hello World!
..
honestly
..
"over" .. " there"
"over there"
print("over".." there")
over there