blob: 34deaaba2fbfe5ff5ef66a5d95283f956a184110 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
try:
import lupa.luajit2 as lupa
except ImportError:
try:
import lupa.lua54 as lupa
except ImportError:
try:
import lupa.lua53 as lupa
except ImportError:
import lupa
print(f"Using {lupa.LuaRuntime().lua_implementation} (compiled with {lupa.LUA_VERSION})")
|