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 |
---|---|---|---|
30 | 2022-05-10 20:20:03 | 41.16 | 97% |
29 | 2022-05-10 20:18:45 | 39.44 | 95% |
3 | 2022-01-06 01:11:21 | 37.00 | 95% |