View Pit Stop page for race #5 by saint8900 — Ghost race
View profile for Aaron (saint8900)
Official speed | 33.00 wpm (56.00 seconds elapsed during race) |
---|---|
Race Start | February 20, 2012 3:07:34am UTC |
Race Finish | February 20, 2012 3:08:30am UTC |
Outcome | No win (3 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") |