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 |
---|---|---|---|
80 | 2025-08-07 00:12:38 | 36.13 | 94% |
66 | 2025-08-01 11:31:58 | 43.56 | 95% |
59 | 2025-07-30 03:23:25 | 39.19 | 93% |
50 | 2025-07-22 06:18:14 | 35.46 | 94% |
16 | 2025-05-12 22:17:50 | 36.16 | 94.1% |