mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
13 lines
186 B
Python
13 lines
186 B
Python
from GTestTask import Task
|
|
task = Task()
|
|
def test1():
|
|
print('test1')
|
|
|
|
def test2():
|
|
print('test2')
|
|
|
|
task.call_always(test1)
|
|
task.call_always(test2)
|
|
task.run_until_ms(1000)
|
|
exit()
|