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 |
---|---|---|---|
14 | 2024-01-05 15:12:47 | 60.71 | 97.6% |
13 | 2024-01-05 15:11:50 | 63.46 | 97% |