View Pit Stop page for race #13 by iseahtnr — Ghost race
View profile for Paul (iseahtnr)
Official speed | 45.40 wpm (40.70 seconds elapsed during race) |
---|---|
Race Start | March 15, 2012 2:45:12am UTC |
Race Finish | March 15, 2012 2:45:53am UTC |
Outcome | Win (1 of 3) |
Accuracy | 92.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") |