chris (stupaddaso)

Race #3

View Pit Stop page for race #3 by stupaddasoGhost race

View profile for chris (stupaddaso)

Official speed 47.55 wpm (38.86 seconds elapsed during race)
Race Start December 23, 2009 12:40:20am UTC
Race Finish December 23, 2009 12:40:58am 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")