Necro (necroeater)

Race #17

View Pit Stop page for race #17 by necroeaterGhost race

View profile for Necro (necroeater)

Official speed 39.95 wpm (46.26 seconds elapsed during race)
Race Start February 14, 2012 4:37:20pm UTC
Race Finish February 14, 2012 4:38:06pm UTC
Outcome Win (1 of 3)
Accuracy 96.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")