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 |
---|---|---|---|
34 | 2024-12-29 11:06:11 | 56.53 | 94.8% |
29 | 2024-12-29 11:01:04 | 54.97 | 95.6% |
24 | 2024-12-29 10:55:13 | 47.97 | 95.4% |