14 lines
190 B
Python
Raw Normal View History

2021-12-30 21:48:11 +08:00
from PikaObj import *
import Device
import PikaStdLib
mem = PikaStdLib.MemChecker()
2021-12-30 22:09:03 +08:00
for i in range(1, 100):
2021-12-30 21:48:11 +08:00
print(i)
print('mem used max:')
mem.max()
print('mem used now:')
mem.now()