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 |
|---|---|---|---|
| 26 | 2011-10-03 00:26:56 | 45.35 | 98% |
| 20 | 2011-10-03 00:19:15 | 36.50 | 96% |
| 14 | 2011-10-02 23:11:09 | 41.96 | 96% |
| 8 | 2011-10-02 23:02:18 | 40.91 | 97% |
| 2 | 2011-10-02 22:50:01 | 36.60 | 97% |