Necro (necroeater)

Race #1

View Pit Stop page for race #1 by necroeaterGhost race

View profile for Necro (necroeater)

Official speed 21.40 wpm (86.36 seconds elapsed during race)
Race Start February 3, 2012 12:04:12pm UTC
Race Finish February 3, 2012 12:05:39pm UTC
Outcome No win (3 of 3)
Accuracy 82.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")