mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-22 17:12:55 +08:00
14 lines
189 B
Python
14 lines
189 B
Python
|
from PikaObj import *
|
||
|
import Device
|
||
|
import PikaStdLib
|
||
|
|
||
|
mem = PikaStdLib.MemChecker()
|
||
|
|
||
|
|
||
|
for i in range(1, 10):
|
||
|
print(i)
|
||
|
|
||
|
print('mem used max:')
|
||
|
mem.max()
|
||
|
print('mem used now:')
|
||
|
mem.now()
|