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 |
---|---|---|---|
29 | 2013-06-07 05:12:37 | 52.62 | 91% |
22 | 2011-06-24 20:18:49 | 38.74 | 83% |
18 | 2011-05-07 20:02:11 | 39.79 | 89% |
14 | 2011-05-01 17:11:56 | 38.44 | |
4 | 2011-02-06 02:50:07 | 26.49 |