Kerry (i8pp)

Race #1

View Pit Stop page for race #1 by i8ppGhost race

View profile for Kerry (i8pp)

Official speed 44.03 wpm (41.97 seconds elapsed during race)
Race Start February 5, 2014 5:10:59am UTC
Race Finish February 5, 2014 5:11:41am UTC
Outcome Win (1 of 2)
Opponents 2. andromeduck (39.62 wpm)
Accuracy 90.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")