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 |
|---|---|---|---|
| 47 | 2016-07-24 08:42:54 | 25.15 | 82% |
| 39 | 2015-06-26 13:15:55 | 27.55 | 84% |
| 37 | 2015-04-30 11:23:56 | 27.26 | 79% |
| 29 | 2015-01-29 13:53:24 | 31.62 | 88% |
| 23 | 2014-10-07 10:07:46 | 20.48 | 88% |
| 18 | 2014-10-06 14:42:48 | 29.76 | 93% |
| 11 | 2014-10-06 14:32:10 | 23.49 | 91% |
| 6 | 2014-10-06 14:21:24 | 22.89 | 82% |