this is a question for people that have released apps

do you write your apps with pure LUA or do you mix it with another language? [import]uid: 47760 topic_id: 12752 reply_id: 312752[/import]

With Corona you are limited to LUA for the logic of your app.

For other portions of our apps (such as level design or database usage) we use other languages which are then interpreted by the LUA logic.

Example: For creating, saving and loading levels in our latest game Goo God (currently in development) we use JSON. We then parse this JSON into a LUA table and place the level objects accordingly.

Therefore the answer to your question is kind of.

Although you have the flexibility to use other languages as a means of communication with LUA you are not able to use a language other than LUA for your app logic.

Regards,

Andreas Ricci
NuPlay Entertainment
Founder & Lead Developer [import]uid: 7366 topic_id: 12752 reply_id: 46751[/import]