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-05-15 06:31:13 | 44.96 | 89% |
7 | 2011-05-15 06:14:50 | 39.89 | 85% |
4 | 2011-05-15 06:06:27 | 47.83 | 91% |