Necro (necroeater)

Race #10

View Pit Stop page for race #10 by necroeaterGhost race

View profile for Necro (necroeater)

Official speed 28.37 wpm (65.14 seconds elapsed during race)
Race Start February 14, 2012 4:17:00pm UTC
Race Finish February 14, 2012 4:18:05pm UTC
Outcome Win (1 of 3)
Accuracy 89.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")