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 |
---|---|---|---|
57 | 2025-05-28 23:41:00 | 41.40 | 95% |
47 | 2025-05-28 23:15:36 | 41.03 | 96% |
44 | 2025-05-28 23:10:18 | 36.70 | 94% |
42 | 2024-09-12 19:44:37 | 34.25 | 92.4% |
22 | 2024-03-21 05:17:09 | 38.24 | 95.6% |
11 | 2024-03-20 06:37:10 | 37.76 | 96.4% |