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 |
---|---|---|---|
9 | 2011-07-12 18:01:15 | 37.99 | 93% |
6 | 2011-07-12 13:13:11 | 36.83 | 93% |
1 | 2011-07-12 13:06:24 | 34.79 | 91% |