Anatoly
Anatoly

Reputation: 5241

How to find which version of Lua do I use?

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

Answers (1)

hjpotter92
hjpotter92

Reputation: 80649

You can use the global variable _VERSION to find out.

print( _G._VERSION )

Upvotes: 10

Related Questions