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 |
---|---|---|---|
42 | 2025-01-20 13:41:11 | 58.38 | 99.4% |
17 | 2024-12-09 16:40:09 | 46.53 | 93.5% |
6 | 2024-11-17 10:22:07 | 42.21 | 96.3% |