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 |
---|---|---|---|
44 | 2012-04-21 05:58:21 | 84.53 | 96% |
35 | 2011-12-16 03:27:11 | 80.92 | 94% |
30 | 2011-09-11 05:37:14 | 65.38 | 93% |
17 | 2011-03-14 03:19:16 | 74.40 | |
2 | 2011-02-26 01:00:04 | 52.98 | |
1 | 2011-02-25 20:47:58 | 42.98 |