Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to find which version of Lua do I use?

Tags:

lua

coronasdk

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.

like image 377
Anatoly Avatar asked Feb 13 '23 20:02

Anatoly


1 Answers

You can use the global variable _VERSION to find out.

print( _G._VERSION )
like image 81
hjpotter92 Avatar answered Feb 22 '23 01:02

hjpotter92