Brandon (cadafish)

Race #4

View Pit Stop page for race #4 by cadafishGhost race

View profile for Brandon (cadafish)

Official speed 27.75 wpm (66.59 seconds elapsed during race)
Race Start April 26, 2012 3:50:55pm UTC
Race Finish April 26, 2012 3:52:01pm UTC
Outcome No win (2 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")