Junky (junkychunk)

Race #2

View Pit Stop page for race #2 by junkychunkGhost race

View profile for Junky (junkychunk)

Official speed 32.33 wpm (57.16 seconds elapsed during race)
Race Start June 10, 2011 12:27:24am UTC
Race Finish June 10, 2011 12:28:21am UTC
Outcome Win (1 of 3)
Accuracy 93.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")