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 |
---|---|---|---|
11 | 2012-12-20 04:54:21 | 32.58 | 87% |
9 | 2012-12-19 18:51:41 | 39.62 | 91% |
2 | 2012-12-19 18:37:58 | 32.51 | 89% |