View Pit Stop page for race #7 by annoyed — Ghost race
Official speed | 46.60 wpm (39.66 seconds elapsed during race) |
---|---|
Race Start | December 26, 2009 5:54:10pm UTC |
Race Finish | December 26, 2009 5:54:49pm UTC |
Outcome | No win (2 of 3) |
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") |