mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-29 17:22:56 +08:00
directly use /src
This commit is contained in:
parent
5de559e817
commit
a2733eb896
14
bsp/pico/pikascript/PikaObj.py
Normal file
14
bsp/pico/pikascript/PikaObj.py
Normal file
@ -0,0 +1,14 @@
|
||||
class TinyObj:
|
||||
pass
|
||||
|
||||
|
||||
class BaseObj(TinyObj):
|
||||
pass
|
||||
|
||||
|
||||
def print(val: any):
|
||||
pass
|
||||
|
||||
|
||||
def set(argPath: str, val: any):
|
||||
pass
|
49
bsp/pico/pikascript/PikaStdLib.py
Normal file
49
bsp/pico/pikascript/PikaStdLib.py
Normal file
@ -0,0 +1,49 @@
|
||||
from PikaObj import *
|
||||
|
||||
|
||||
class MemChecker(TinyObj):
|
||||
def max():
|
||||
pass
|
||||
|
||||
def now():
|
||||
pass
|
||||
|
||||
def getMax() -> float:
|
||||
pass
|
||||
|
||||
def getNow() -> float:
|
||||
pass
|
||||
|
||||
def resetMax():
|
||||
pass
|
||||
|
||||
|
||||
class SysObj(BaseObj):
|
||||
def type(arg: any):
|
||||
pass
|
||||
|
||||
def remove(argPath: str):
|
||||
pass
|
||||
|
||||
def int(arg: any) -> int:
|
||||
pass
|
||||
|
||||
def float(arg: any) -> float:
|
||||
pass
|
||||
|
||||
def iter(arg: any) -> any:
|
||||
pass
|
||||
|
||||
def next(arg: any) -> any:
|
||||
pass
|
||||
|
||||
def range(a1: int, a2: int, a3: int) -> any:
|
||||
pass
|
||||
|
||||
|
||||
class RangeObj(TinyObj):
|
||||
def __iter__() -> any:
|
||||
pass
|
||||
|
||||
def __next__() -> any:
|
||||
pass
|
Binary file not shown.
@ -1,2 +0,0 @@
|
||||
pikascript-core==v1.2.8
|
||||
PikaStdLib==v1.2.4
|
BIN
bsp/pico/pikascript/rust-msc-latest-win10.exe
Normal file
BIN
bsp/pico/pikascript/rust-msc-latest-win10.exe
Normal file
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user