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-25 20:02:39 | 38.95 | 92% |
11 | 2013-10-19 08:45:46 | 42.00 | 93% |
7 | 2013-10-18 15:04:31 | 43.02 | 93% |