View Pit Stop page for race #4 by its_a_new_beggining — Ghost race
View profile for Metal Man (its_a_new_beggining)
| Official speed | 41.75 wpm (44.26 seconds elapsed during race) |
|---|---|
| Race Start | June 4, 2011 4:26:17pm UTC |
| Race Finish | June 4, 2011 4:27:02pm UTC |
| Outcome | No win (1 of 1) |
| Accuracy | 93.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") |