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 |
---|---|---|---|
8 | 2013-01-20 03:07:56 | 58.49 | 96% |
7 | 2011-07-01 07:23:51 | 45.46 | 94% |
3 | 2011-06-28 10:50:28 | 39.90 | 90% |