mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-29 17:22:56 +08:00
11 lines
171 B
Python
11 lines
171 B
Python
|
import PikaStdLib
|
||
|
import PikaStdDevice
|
||
|
from PikaObj import *
|
||
|
|
||
|
print('hello world')
|
||
|
mem = PikaStdLib.MemChecker()
|
||
|
print('mem.max :')
|
||
|
mem.max()
|
||
|
print('mem.now :')
|
||
|
mem.now()
|