Reputation: 5241
I develop app by using Lua Glider 2 + Corona SDK latest release. How can I find which version of Lua do it use? Thank you.
Upvotes: 5
Views: 2938
Reputation: 80649
You can use the global variable _VERSION
to find out.
print( _G._VERSION )
Upvotes: 10