Is there a way to “watch” how your code plays out? meaning showing the way it all works one step after the other? [import]uid: 127842 topic_id: 22826 reply_id: 322826[/import]
You can use the debugger and set break points at whichever lines you want to examine. You can also use Profiler by M.Y. Developers to analyze the memory and CPU usage of your code (although you can’t view which lines are being executed in realtime… they would go by so fast you wouldn’t see them.) [import]uid: 120 topic_id: 22826 reply_id: 91178[/import]
I think tutorials are your best bet. If your only just starting out with programming or lua in general, it’s better to take a huge step back and make simple things like calculator apps and such to get a grip of the language before going head first into a more in depth and complex app.
See this : http://www.lua.org/pil/
this: http://www.lua.org/pil/1.html
and also : www.learningcorona.com [import]uid: 84637 topic_id: 22826 reply_id: 91254[/import]