View Pit Stop page for race #2 by kenjolojera — Ghost race
View profile for jeffrey (kenjolojera)
Official speed | 20.45 wpm (90.37 seconds elapsed during race) |
---|---|
Race Start | August 9, 2011 6:50:12am UTC |
Race Finish | August 9, 2011 6:51:43am UTC |
Outcome | No win (3 of 3) |
Accuracy | 83.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") |