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 |
---|---|---|---|
117 | 2024-09-30 06:02:13 | 29.00 | 97.6% |
105 | 2024-09-27 00:49:20 | 26.70 | 96% |
84 | 2024-09-23 02:11:12 | 28.35 | 94.3% |