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 |
---|---|---|---|
36 | 2025-01-16 14:11:02 | 37.69 | 96.4% |
34 | 2024-12-05 14:48:53 | 36.59 | 97% |
6 | 2024-09-17 13:46:31 | 40.71 | 94% |