View Pit Stop page for race #1 by matthew_boyd — Ghost race
View profile for Matt (matthew_boyd)
Official speed | 39.25 wpm (47.08 seconds elapsed during race) |
---|---|
Race Start | September 17, 2012 4:28:28pm UTC |
Race Finish | September 17, 2012 4:29:15pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 94.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") |