add pikastddata.py

This commit is contained in:
lyon 2021-12-13 21:44:05 +08:00
parent 5fc34d4fe7
commit 078eab2bfb

View File

@ -0,0 +1,21 @@
from PikaObj import *
class List(TinyObj):
def __init__():
pass
# add an arg after the end of list
def append(arg: any):
pass
# get an arg by the index
def get(i: int) -> any:
pass
# set an arg by the index
def set(i: int, arg: any):
pass
# get the length of list
def len() -> int:
pass