View Pit Stop page for race #61 by dudiellon — Ghost race
View profile for @dudiellon (dudiellon)
Official speed | 46.16 wpm (40.03 seconds elapsed during race) |
---|---|
Race Start | April 14, 2011 4:36:29am UTC |
Race Finish | April 14, 2011 4:37:09am UTC |
Outcome | Win (1 of 2) |
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") |