Necro (necroeater)

Race #9

View Pit Stop page for race #9 by necroeaterGhost race

View profile for Necro (necroeater)

Official speed 31.67 wpm (58.35 seconds elapsed during race)
Race Start February 5, 2012 3:02:18am UTC
Race Finish February 5, 2012 3:03:17am UTC
Outcome Win (1 of 3)
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")