View Pit Stop page for race #5 by xsho123 — Ghost race
View profile for Edwin (xsho123)
| Official speed | 61.42 wpm (30.09 seconds elapsed during race) |
|---|---|
| Race Start | August 26, 2012 6:50:25pm UTC |
| Race Finish | August 26, 2012 6:50:55pm UTC |
| Outcome | Win (1 of 3) |
| Accuracy | 99.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") |