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 |
---|---|---|---|
32 | 2023-06-12 06:26:52 | 44.11 | 96.7% |
16 | 2023-06-08 06:29:21 | 41.10 | 95.9% |