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 |
---|---|---|---|
15 | 2011-05-31 20:06:15 | 40.86 | 89% |
7 | 2011-05-31 19:52:37 | 40.94 | 92% |
1 | 2011-05-31 17:31:45 | 43.06 | 94% |