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 | 2011-08-18 00:37:10 | 49.82 | 94% |
4 | 2011-08-18 00:21:30 | 49.40 | 93% |
1 | 2011-08-18 00:11:15 | 48.11 | 96% |