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 |
---|---|---|---|
46 | 2025-01-11 19:29:38 | 37.82 | 94.8% |
16 | 2024-12-30 07:21:18 | 34.57 | 94% |
7 | 2024-12-29 13:35:34 | 29.03 | 89.3% |