View Pit Stop page for race #8 by typerlouis — Ghost race
View profile for Luigi (typerlouis)
Official speed | 44.70 wpm (41.34 seconds elapsed during race) |
---|---|
Race Start | February 2, 2011 2:37:45am UTC |
Race Finish | February 2, 2011 2:38:26am 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") |