李昂 b354948c40 !51 Support bind .pyi from other *.py expect main.py
* Support bind .pyi from other *.py expect main.py
* update rust
* fix suffix format
* fix name case
* supporting import pyi from other py
* supporting import pyi from other py
2022-07-13 08:29:42 +00:00

13 lines
355 B
Python

import PikaStdLib
import test
from pika_cjson import cJSON
print('hello pikascript!')
mem = PikaStdLib.MemChecker()
print('mem used max:')
mem.max()
json = cJSON()
json.parse('{"name": "mculover666","age": 22,"weight": 55.5,"address":{"country": "China","zip-code": 111111"},"skill": ["c", "Java", "Python"],"student": false}')
json.print()
print('END')