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 |
|---|---|---|---|
| 68 | 2013-04-28 02:29:20 | 56.10 | 96% |
| 62 | 2013-04-21 16:58:52 | 58.65 | 94% |
| 55 | 2013-04-21 16:47:14 | 52.55 | 92% |
| 38 | 2013-04-20 04:59:37 | 60.54 | 94% |
| 19 | 2013-04-14 16:46:55 | 53.85 | 94% |