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 |
---|---|---|---|
10 | 2012-11-03 16:19:09 | 30.75 | 92% |
5 | 2012-11-03 15:58:38 | 26.87 | 89% |
1 | 2012-10-31 22:47:55 | 30.63 | 97% |