Online Lua Compiler
										
										
local x = 30
local y = 40
local z = x + y

print("Sum of x+y =",z)
                                
                                

Output Results

										
Sum of x+y =	70