Enoch (enochs)

Race #21

View Pit Stop page for race #21 by enochsGhost race

View profile for Enoch (enochs)

Official speed 30.31 wpm (60.97 seconds elapsed during race)
Race Start February 7, 2011 1:06:54am UTC
Race Finish February 7, 2011 1:07:55am 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")