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 |
---|---|---|---|
13 | 2024-03-02 06:54:11 | 50.55 | 97.6% |
9 | 2024-03-01 15:08:54 | 49.80 | 97.6% |