View Pit Stop page for race #1 by untimely_demise — Ghost race
View profile for Stygian (untimely_demise)
Official speed | 22.64 wpm (81.63 seconds elapsed during race) |
---|---|
Race Start | October 4, 2011 6:27:32pm UTC |
Race Finish | October 4, 2011 6:28:54pm UTC |
Outcome | No win (1 of 1) |
Accuracy | 96.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") |