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 |
---|---|---|---|
12 | 2025-09-19 16:12:58 | 39.34 | 94% |
9 | 2025-09-19 09:23:53 | 35.39 | 94% |
6 | 2025-09-11 10:43:22 | 33.41 | 93% |