Slow Joe (slow_joe)

Race #22

View Pit Stop page for race #22 by slow_joeGhost race

View profile for Slow Joe (slow_joe)

Official speed 38.74 wpm (47.70 seconds elapsed during race)
Race Start June 24, 2011 8:18:02pm UTC
Race Finish June 24, 2011 8:18:49pm UTC
Outcome No win (1 of 1)
Accuracy 83.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")