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 |
---|---|---|---|
31 | 2024-12-22 18:34:31 | 67.22 | 97.5% |
23 | 2024-09-14 21:45:44 | 62.46 | 97.6% |
20 | 2024-09-14 21:42:03 | 73.61 | 98.8% |