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 |
---|---|---|---|
9 | 2011-05-05 04:55:36 | 21.66 | 81% |
7 | 2011-05-04 04:15:28 | 23.23 | 90% |
2 | 2011-05-04 04:04:38 | 21.12 | 84% |