import os import sys def run(program, *args): pid = os.fork() if not pid: os.execvp(program, program + args) return os.wait()[0] run("python", "hello.py")
Game | Time | WPM | Accuracy |
---|---|---|---|
33 | 2024-06-09 19:13:12 | 50.66 | 97% |
20 | 2024-05-27 21:03:57 | 47.00 | 98.1% |