View Pit Stop page for race #1 by solenoid — Ghost race
View profile for Fortress (solenoid)
| Official speed | 87.94 wpm (21.01 seconds elapsed during race) |
|---|---|
| Race Start | June 26, 2012 2:38:07pm UTC |
| Race Finish | June 26, 2012 2:38:28pm UTC |
| Outcome | Win (1 of 3) |
| Accuracy | 99.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") |