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 |
---|---|---|---|
10 | 2013-12-28 00:29:01 | 37.74 | 88% |
5 | 2013-12-28 00:19:54 | 39.90 | 92% |
1 | 2013-12-28 00:12:14 | 30.62 | 88% |