Running Lua Code
Switch the language to Lua (CPU & GPU)
Import the code:
hello.lua
version3()
a = 5+6
b = "PixelsWorld"
c = "is cool!"
d = time
e = slider(0)
f = "5 + 6 = " .. a .. "\nMessage : " .. b .. " " .. c .. "\nCurrent time is : " .. d .. " (s)\nValue of slider0 is : " .. e
print(f)
Eventually, you will see the output information displayed at the top left corner of the screen.