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 |
---|---|---|---|
59 | 2025-03-26 09:12:08 | 53.20 | 95.8% |
24 | 2024-05-09 10:30:53 | 40.50 | 93.1% |