Kerry (i8pp)

Race #3

View Pit Stop page for race #3 by i8ppGhost race

View profile for Kerry (i8pp)

Official speed 55.20 wpm (33.48 seconds elapsed during race)
Race Start February 5, 2014 5:14:47am UTC
Race Finish February 5, 2014 5:15:21am UTC
Outcome Win (1 of 2)
Opponents 2. andromeduck (45.03 wpm)
Accuracy 94.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")