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 |
|---|---|---|---|
| 11 | 2011-02-06 14:35:49 | 66.70 | |
| 7 | 2011-02-06 14:27:10 | 78.04 | |
| 5 | 2011-02-06 14:25:15 | 65.66 |