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 |
---|---|---|---|
28 | 2025-05-16 02:32:02 | 27.77 | 91.2% |
11 | 2025-05-11 00:27:36 | 25.52 | 93.8% |
1 | 2024-05-28 19:47:40 | 22.15 | 92.4% |