mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +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() |