Brief introduction
CORONASDK is a mobile-enabled game engine that supports both iOS and Android platforms, primarily using LUA, with its own SDK.
Windows is:
Http://developer.coronalabs.com/downloads/coronasdk
Installation use
Once installed, the simulator will open automatically.
Now create a new file under D:/app Main.lua
print("Hello World")
Output
At this point the output is visible only in output.
The following calls a function that allows the mobile interface to see the output:
local textObject = display.newText("Hello World"5050nil24) textObject:setTextColor(255,255,255
Output:
There are some examples under the installation directory that you can open to see where
C:\Program Files (x86) \corona Labs\corona sdk\sample Code
Editor
I downloaded sublime Text3 as the LUA default editor.
Next time learn to do a simple little game with Lua.
Lua Learning Note Three CORONASDK use