How to find which version of Lua to use?

I am developing an application using the latest version of the Lua Glider 2 + Corona SDK. How can I find which version of Lua to use? Thank.

+3
source share
1 answer

You can use a global variable _VERSIONto find out.

print( _G._VERSION )
+5
source

All Articles