Matt (m4olivei)

Race #16

View Pit Stop page for race #16 by m4oliveiGhost race

View profile for Matt (m4olivei)

Official speed 33.78 wpm (54.71 seconds elapsed during race)
Race Start January 29, 2011 9:47:13pm UTC
Race Finish January 29, 2011 9:48:07pm 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")