View Pit Stop page for race #29 by slow_joe — Ghost race
View profile for Slow Joe (slow_joe)
Official speed | 52.62 wpm (35.12 seconds elapsed during race) |
---|---|
Race Start | June 7, 2013 5:12:02am UTC |
Race Finish | June 7, 2013 5:12:37am UTC |
Outcome | Win (1 of 3) |
Accuracy | 91.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") |