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 |
|---|---|---|---|
| 67 | 2024-11-27 15:49:10 | 71.43 | 96.6% |
| 32 | 2024-11-19 23:04:57 | 60.49 | 95.2% |
| 23 | 2024-11-19 11:21:07 | 61.50 | 94.1% |
| 10 | 2024-11-17 21:41:23 | 60.38 | 95.7% |