View Pit Stop page for race #3 by room_20four — Ghost race
View profile for Ericc (room_20four)
| Official speed | 32.76 wpm (56.41 seconds elapsed during race) |
|---|---|
| Race Start | January 31, 2011 8:40:43am UTC |
| Race Finish | January 31, 2011 8:41:39am UTC |
| Outcome | No win (2 of 3) |
| 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") |