View Pit Stop page for race #1 by fourshade — Ghost race
View profile for ..... (fourshade)
| Official speed | 52.12 wpm (35.46 seconds elapsed during race) |
|---|---|
| Race Start | May 6, 2011 8:51:00pm UTC |
| Race Finish | May 6, 2011 8:51:35pm UTC |
| Outcome | No win (1 of 1) |
| Accuracy | 100.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") |