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 |
|---|---|---|---|
| 69 | 2024-07-30 06:22:14 | 36.02 | 93.4% |
| 61 | 2024-06-21 17:16:20 | 41.64 | 94.9% |
| 59 | 2024-06-21 17:13:26 | 42.30 | 93.4% |
| 48 | 2024-04-30 16:34:04 | 35.03 | 93.1% |
| 39 | 2024-04-13 12:24:46 | 34.70 | 93.2% |