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 |
---|---|---|---|
37 | 2024-10-03 11:06:35 | 37.72 | 91.1% |
36 | 2024-10-02 05:27:46 | 47.79 | 94% |
16 | 2024-09-26 06:26:05 | 43.57 | 94.3% |