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 |
|---|---|---|---|
| 150 | 2025-01-12 18:53:57 | 30.21 | 96% |
| 144 | 2025-01-11 11:40:56 | 43.31 | 95.9% |
| 138 | 2025-01-11 11:31:24 | 21.36 | 93.7% |
| 132 | 2025-01-08 05:18:03 | 38.44 | 96% |
| 112 | 2025-01-03 15:43:15 | 39.39 | 96.4% |
| 80 | 2024-12-27 17:44:48 | 37.17 | 97.1% |
| 26 | 2024-11-09 15:07:06 | 31.85 | 94.3% |
| 9 | 2024-11-04 18:32:52 | 23.66 | 95.2% |