View Pit Stop page for race #5 by artemisfowl3rd — Ghost race
View profile for w (artemisfowl3rd)
| Official speed | 75.57 wpm (24.45 seconds elapsed during race) |
|---|---|
| Race Start | December 13, 2013 8:26:39pm UTC |
| Race Finish | December 13, 2013 8:27:04pm UTC |
| Outcome | Win (1 of 3) |
| Accuracy | 94.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") |