View Pit Stop page for race #6 by attilitus — Ghost race
View profile for Tim (attilitus)
Official speed | 65.92 wpm (28.03 seconds elapsed during race) |
---|---|
Race Start | February 6, 2011 10:19:17am UTC |
Race Finish | February 6, 2011 10:19:45am 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") |