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 |
---|---|---|---|
41 | 2025-06-12 12:49:02 | 16.37 | 92% |
38 | 2025-06-11 18:53:43 | 17.80 | 94% |
33 | 2025-06-11 18:30:43 | 18.08 | 91% |