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 |
---|---|---|---|
12 | 2013-02-04 04:57:50 | 29.75 | 92% |
8 | 2013-02-03 23:17:01 | 34.89 | 97% |
3 | 2013-02-03 23:08:20 | 32.99 | 99% |