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 |
---|---|---|---|
109 | 2025-05-10 11:21:44 | 37.83 | 93.9% |
57 | 2024-12-16 04:46:16 | 37.35 | 95.1% |
53 | 2024-12-13 11:18:36 | 37.01 | 93.8% |
40 | 2024-07-13 11:08:13 | 28.72 | 93.4% |
18 | 2024-01-16 18:09:41 | 26.18 | 92% |