View Pit Stop page for race #5 by icoder — Ghost race
View profile for gart (icoder)
| Official speed | 34.95 wpm (52.88 seconds elapsed during race) |
|---|---|
| Race Start | November 15, 2012 7:59:08am UTC |
| Race Finish | November 15, 2012 8:00:01am UTC |
| Outcome | No win (3 of 3) |
| Accuracy | 96.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") |