mirror of
https://github.com/pocketpy/pocketpy
synced 2025-10-20 11:30:18 +00:00
12 lines
118 B
Python
12 lines
118 B
Python
from pkpy import *
|
|
import time
|
|
|
|
def costly_func(n: int):
|
|
time.sleep(n)
|
|
|
|
x = 1
|
|
y = 2
|
|
costly_func(2)
|
|
|
|
time.sleep(1)
|