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 | 2024-09-12 19:44:37 | 34.25 | 92.4% |
22 | 2024-03-21 05:17:09 | 38.24 | 95.6% |
11 | 2024-03-20 06:37:10 | 37.76 | 96.4% |