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 |
---|---|---|---|
16 | 2013-10-04 11:56:21 | 52.64 | 93% |
14 | 2013-10-04 09:59:43 | 56.15 | 97% |
8 | 2013-10-03 09:58:00 | 51.01 | 93% |