i'd buy that for a dollar! (pentalon)

Race #19

View Pit Stop page for race #19 by pentalonGhost race

View profile for i'd buy that for a dollar! (pentalon)

Official speed 81.80 wpm (22.59 seconds elapsed during race)
Race Start October 17, 2013 10:32:12pm UTC
Race Finish October 17, 2013 10:32:35pm UTC
Outcome Win (1 of 3)
Accuracy 98.0%
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")