lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


On Tue, Mar 26, 2013 at 12:15 AM, Steven Johnson
<steve@xibalbastudios.com> wrote:
> I concur with Love, or Corona. (As other Lua-based SDK's go, I haven't
> invested enough time to say.)

Paul K has done lovely work with his ZB Studio:

http://studio.zerobrane.com/

comes with his 'EduPack' examples, and many of these are very visual,
(he provides a classic 'turtle' environment), e.g. to draw a circle:

require "turtle"

show()
local angle = 1
for i = 1, 360/angle+1 do
  turn(angle)
  move(angle)
end
hide()

wait()


steve d.