Strings
Declaring a String
local str = "Hello world!"Combining Strings
local str = "Your high score is "
local highScore = 5200
local combinedString = str .. highScore
print(str)
print(combinedString)Last updated
Was this helpful?
