Enoch (enochs)

Race #29

View Pit Stop page for race #29 by enochsGhost race

View profile for Enoch (enochs)

Official speed 27.95 wpm (66.12 seconds elapsed during race)
Race Start February 7, 2011 1:25:32am UTC
Race Finish February 7, 2011 1:26:38am UTC
Outcome No win (1 of 1)
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")