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 | 2012-01-13 04:40:36 | 46.14 | 91% |
14 | 2012-01-13 04:21:36 | 41.84 | 87% |
8 | 2012-01-13 04:11:47 | 52.52 | 96% |
6 | 2012-01-13 03:23:17 | 39.69 | 89% |
3 | 2011-10-01 08:12:54 | 33.41 | 82% |