View Pit Stop page for race #1 by paldepind — Ghost race
View profile for paldepind (paldepind)
| Official speed | 30.47 wpm (60.65 seconds elapsed during race) |
|---|---|
| Race Start | February 1, 2011 6:10:11pm UTC |
| Race Finish | February 1, 2011 6:11:11pm UTC |
| Outcome | No win (3 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") |