View Pit Stop page for race #1 by piot — Ghost race
Official speed | 30.63 wpm (60.33 seconds elapsed during race) |
---|---|
Race Start | October 31, 2012 10:46:55pm UTC |
Race Finish | October 31, 2012 10:47:55pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 97.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") |