mirror of
https://github.com/geohot/qira
synced 2025-03-13 02:23:07 +03:00
12 lines
199 B
Python
12 lines
199 B
Python
import sys
|
|
sys.path.append("middleware/")
|
|
import qira_program
|
|
import time
|
|
|
|
def test():
|
|
program = qira_program.Program("qira_tests/bin/loop")
|
|
program.execqira(shouldfork=True)
|
|
time.sleep(1)
|
|
|
|
|