View Pit Stop page for race #55 by partytoss — Ghost race
View profile for Daniel (partytoss)
| Official speed | 52.55 wpm (35.17 seconds elapsed during race) |
|---|---|
| Race Start | April 21, 2013 4:46:39pm UTC |
| Race Finish | April 21, 2013 4:47:14pm UTC |
| Outcome | Win (1 of 3) |
| Accuracy | 92.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") |