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
1 | local a = 3 |
2 | local b = 1 |
3 | 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
1 | local a = 3 |
2 | local b = 1 |
3 | print (a .. b) |