View Pit Stop page for race #53 by bigd4316 — Ghost race
View profile for David (bigd4316)
Official speed | 68.17 wpm (27.11 seconds elapsed during race) |
---|---|
Race Start | January 28, 2011 6:00:47pm UTC |
Race Finish | January 28, 2011 6:01:14pm UTC |
Outcome | Win (1 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") |