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 |
|---|---|---|---|
| 14 | 2024-07-01 07:05:43 | 40.34 | 96.3% |
| 9 | 2024-07-01 04:56:49 | 37.96 | 96% |
| 5 | 2024-06-27 06:07:38 | 32.61 | 93.6% |
| 3 | 2024-06-27 06:04:37 | 37.09 | 95.3% |