View Pit Stop page for race #5 by mikewags — Ghost race
View profile for Michael (mikewags)
| Official speed | 27.60 wpm (66.96 seconds elapsed during race) |
|---|---|
| Race Start | February 2, 2012 2:18:50pm UTC |
| Race Finish | February 2, 2012 2:19:57pm UTC |
| Outcome | No win (2 of 2) |
| Accuracy | 75.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") |