(mylove4u)

Race #20

View Pit Stop page for race #20 by mylove4uGhost race

View profile for (mylove4u)

Official speed 64.42 wpm (28.69 seconds elapsed during race)
Race Start February 5, 2011 5:09:41am UTC
Race Finish February 5, 2011 5:10:09am UTC
Outcome No win (2 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")