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 |
---|---|---|---|
62 | 2025-06-06 01:43:38 | 24.51 | 94% |
36 | 2025-05-11 00:27:41 | 23.79 | 95.5% |