mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
15 lines
391 B
Python
15 lines
391 B
Python
import PikaStdLib
|
|
import test
|
|
import TemplateDevice
|
|
import module
|
|
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')
|