View Pit Stop page for race #1 by selphy — Ghost race
View profile for selphy (selphy)
Official speed | 66.47 wpm (27.80 seconds elapsed during race) |
---|---|
Race Start | December 27, 2012 6:33:14pm UTC |
Race Finish | December 27, 2012 6:33:42pm UTC |
Outcome | Win (1 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") |