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 |
---|---|---|---|
12 | 2012-08-13 22:14:53 | 31.27 | 94% |
8 | 2012-08-13 22:05:24 | 31.92 | 92% |
2 | 2012-08-13 21:47:55 | 32.65 | 92% |