Colin (perplexes)

Race #8

View Pit Stop page for race #8 by perplexesGhost race

View profile for Colin (perplexes)

Official speed 34.84 wpm (53.04 seconds elapsed during race)
Race Start July 16, 2010 11:21:15pm UTC
Race Finish July 16, 2010 11:22:08pm 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")