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 |
|---|---|---|---|
| 73 | 2023-05-28 00:14:32 | 40.37 | 98% |
| 69 | 2023-05-28 00:07:08 | 41.08 | 99% |
| 51 | 2023-05-27 04:29:03 | 36.42 | 96% |
| 25 | 2023-05-22 22:48:38 | 29.77 | 95% |