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 |
---|---|---|---|
20 | 2013-07-01 16:49:35 | 55.17 | 90% |
11 | 2013-06-13 15:05:26 | 48.36 | 93% |
10 | 2013-06-13 15:03:31 | 42.89 | 87% |