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 |
---|---|---|---|
23 | 2011-07-30 10:49:42 | 51.61 | 94% |
14 | 2011-07-30 10:18:50 | 53.14 | 97% |
10 | 2011-07-30 10:01:41 | 52.01 | 94% |
6 | 2011-07-30 09:55:03 | 54.32 | 93% |
5 | 2011-07-30 09:53:41 | 55.64 | 97% |