View Pit Stop page for race #69 by dudiellon — Ghost race
View profile for @dudiellon (dudiellon)
Official speed | 54.62 wpm (33.83 seconds elapsed during race) |
---|---|
Race Start | April 14, 2011 4:58:32am UTC |
Race Finish | April 14, 2011 4:59:05am UTC |
Outcome | Win (1 of 2) |
Opponents |
2. elienai2 (25.86 wpm) |
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") |