Contact: aviboots(AT)netvision.net.il
36,608 questions
47,860 answers
573 users
s = "lua" n = 234 pi = 3.14 b = true e = nil print(type(s)) print(type(n)) print(type(pi)) print(type(b)) print(type(e)) print(type(print)) --[[ run: string number number boolean nil function --]]