lua type function code example
Example 1: lua variable types
-- Nil (no value)
-- Number => Example: 1234567890
-- String => Example: "random text"
-- Function
-- Userdata
-- Boolean (true/fanse)
-- Table
-- Thread
Example 2: lua function
--// Basic Function
function PrintingText()
print("My text here")
end
PrintingText()