Dan (42istheanswer)

Race #4

View Pit Stop page for race #4 by 42istheanswerGhost race

View profile for Dan (42istheanswer)

Official speed 55.73 wpm (33.16 seconds elapsed during race)
Race Start February 2, 2011 6:58:37pm UTC
Race Finish February 2, 2011 6:59:10pm UTC
Outcome Win (1 of 2)
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")