View Pit Stop page for race #3 by eglimpse — Ghost race
View profile for Erik (eglimpse)
Official speed | 33.41 wpm (55.31 seconds elapsed during race) |
---|---|
Race Start | October 1, 2011 8:11:59am UTC |
Race Finish | October 1, 2011 8:12:54am UTC |
Outcome | Win (1 of 3) |
Accuracy | 82.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") |