print a variable lua code example
Example: how to print a variable in lua
local var = "Hello World" -- Creates the variable
print(var) -- Prints the variable
local var = "Hello World" -- Creates the variable
print(var) -- Prints the variable