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 |
---|---|---|---|
13 | 2011-07-05 23:41:36 | 70.15 | 97% |
2 | 2011-07-05 00:47:50 | 65.44 | 96% |
1 | 2011-07-05 00:33:53 | 58.68 | 97% |