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 |
---|---|---|---|
17 | 2025-06-15 00:42:41 | 22.33 | 93% |
12 | 2025-05-24 14:17:08 | 20.96 | 94% |
6 | 2025-05-11 02:03:28 | 17.55 | 92.7% |