defining several functions lua code example
Example 1: how to print in lua
print("text"..v) -- "" for strings, '..' to concencate, type name of variable to print variable
Example 2: lua print
print "hello"
-- or
print("hello")
print("text"..v) -- "" for strings, '..' to concencate, type name of variable to print variable
print "hello"
-- or
print("hello")