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 |
|---|---|---|---|
| 56 | 2015-09-24 22:15:59 | 62.63 | 97% |
| 48 | 2015-09-22 22:20:17 | 60.94 | 96% |
| 41 | 2015-09-17 22:44:50 | 52.07 | 96% |
| 37 | 2015-09-17 22:31:37 | 61.50 | 97% |
| 35 | 2015-09-17 22:29:40 | 59.98 | 98% |
| 18 | 2015-09-08 01:07:51 | 54.41 | 92% |
| 14 | 2015-09-07 01:03:40 | 60.60 | 97% |
| 8 | 2015-09-03 22:20:39 | 56.45 | 94% |