View Pit Stop page for race #5 by necroeater — Ghost race
View profile for Necro (necroeater)
Official speed | 24.02 wpm (76.94 seconds elapsed during race) |
---|---|
Race Start | February 5, 2012 2:52:00am UTC |
Race Finish | February 5, 2012 2:53:17am UTC |
Outcome | No win (2 of 3) |
Accuracy | 89.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") |