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 | 2011-01-31 17:53:13 | 24.06 | |
5 | 2011-01-31 17:40:26 | 30.74 | |
3 | 2011-01-31 16:51:11 | 24.91 |