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 | 2013-09-16 15:09:13 | 36.42 | 93% |
6 | 2013-09-16 15:01:56 | 39.10 | 92% |
5 | 2013-07-13 02:34:54 | 29.88 | 91% |