View Pit Stop page for race #1 by douglaswaugh — Ghost race
View profile for Douglas (douglaswaugh)
Official speed | 29.01 wpm (63.70 seconds elapsed during race) |
---|---|
Race Start | July 19, 2011 11:32:04am UTC |
Race Finish | July 19, 2011 11:33:08am UTC |
Outcome | No win (2 of 3) |
Accuracy | 83.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") |