View Pit Stop page for race #2 by cholland89 — Ghost race
View profile for Family (cholland89)
Official speed | 59.89 wpm (30.86 seconds elapsed during race) |
---|---|
Race Start | March 26, 2011 12:13:28pm UTC |
Race Finish | March 26, 2011 12:13:59pm 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") |