Engine 0.0.4
Game engine in lua
Loading...
Searching...
No Matches
lua.lua
Go to the documentation of this file.
1local function has_support_utf8()
2 if jit then
3 return true
4 end
5
6 if tonumber(_VERSION:match('Lua 5.(%d+)')) >= 3 then
7 return true
8 end
9
10 return false
11end
12
13local P = {
15}
16
17return P
local function has_support_utf8()