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 |
---|---|---|---|
91 | 2025-03-17 18:05:12 | 41.54 | 89.9% |
26 | 2025-01-28 16:42:23 | 32.20 | 90.6% |
18 | 2025-01-28 16:24:54 | 31.70 | 90.4% |