View Pit Stop page for race #4 by tpenguinltg — Ghost race
View profile for tPenguinLTG (tpenguinltg)
Official speed | 34.57 wpm (53.46 seconds elapsed during race) |
---|---|
Race Start | March 4, 2011 10:14:08pm UTC |
Race Finish | March 4, 2011 10:15:02pm UTC |
Outcome | No win (2 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") |