jcoimbra (jcoimbra)

Race #1

View Pit Stop page for race #1 by jcoimbraGhost race

View profile for jcoimbra (jcoimbra)

Official speed 85.00 wpm (21.74 seconds elapsed during race)
Race Start January 29, 2011 12:49:31am UTC
Race Finish January 29, 2011 12:49:52am 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")