View Pit Stop page for race #12 by gustrbepo — Ghost race
View profile for gustr (gustrbepo)
Official speed | 41.33 wpm (44.71 seconds elapsed during race) |
---|---|
Race Start | March 14, 2013 1:14:59pm UTC |
Race Finish | March 14, 2013 1:15:43pm UTC |
Outcome | No win (2 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") |