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 |
---|---|---|---|
11 | 2025-02-02 18:28:46 | 67.23 | 96.6% |
9 | 2025-02-02 18:26:07 | 61.17 | 94.8% |
6 | 2025-02-02 18:21:00 | 67.89 | 98.2% |