I want to make box A Text = 3 and box B Text = 1 and box C = AB = 31
I try with print() but it not work
local a = 3 local b = 1 print(ab)
Output
nil
I think ab
is not a
and b
It is a new variable
So please help me!
A simple way to do this would be
local a = 3 local b = 1 print(a .. b)