mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-29 17:22:56 +08:00
18 lines
202 B
Python
18 lines
202 B
Python
from PikaObj import *
|
|
|
|
|
|
def __init__(): ...
|
|
|
|
|
|
def eval(cmd: str) -> any: ...
|
|
|
|
|
|
def evalLine(line: str) -> any: ...
|
|
|
|
class LuaTable:
|
|
pass
|
|
|
|
def require(module: str)-> LuaTable: ...
|
|
|
|
def __del__():...
|