mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-22 17:12:55 +08:00
13 lines
159 B
Python
13 lines
159 B
Python
|
import PikaStdLib
|
||
|
|
||
|
print('hello PikaScript!')
|
||
|
|
||
|
mem = PikaStdLib.MemChecker()
|
||
|
|
||
|
print('mem used max:')
|
||
|
mem.max()
|
||
|
|
||
|
i = 0
|
||
|
while i < 100:
|
||
|
i = i + 1
|
||
|
print(i)
|