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 |
---|---|---|---|
10 | 2025-05-08 03:03:45 | 21.22 | 93.9% |
8 | 2025-05-07 13:23:56 | 21.10 | 95.9% |
1 | 2025-05-07 08:57:25 | 18.29 | 95.4% |