View Pit Stop page for race #2 by kelinu — Ghost race
View profile for Mike (kelinu)
Official speed | 61.07 wpm (30.26 seconds elapsed during race) |
---|---|
Race Start | June 28, 2012 12:33:25pm UTC |
Race Finish | June 28, 2012 12:33:55pm UTC |
Outcome | Win (1 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") |