View Pit Stop page for race #10 by masterxilo — Ghost race
View profile for Paul (masterxilo)
| Official speed | 44.92 wpm (41.14 seconds elapsed during race) |
|---|---|
| Race Start | March 12, 2013 9:53:25pm UTC |
| Race Finish | March 12, 2013 9:54:06pm UTC |
| Outcome | No win (2 of 3) |
| Accuracy | 97.0% |
| Points | 0.00 |
| Text | #10002 (Length: 154 characters) 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") |