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 |
---|---|---|---|
18 | 2025-06-09 06:37:05 | 57.91 | 97% |
14 | 2025-06-08 08:10:52 | 49.12 | 98% |
11 | 2025-06-08 08:07:10 | 51.83 | 97% |