error (leonhardeuler)

Race #12

View Pit Stop page for race #12 by leonhardeulerGhost race

View profile for error (leonhardeuler)

Official speed 35.63 wpm (51.87 seconds elapsed during race)
Race Start December 30, 2011 10:50:32am UTC
Race Finish December 30, 2011 10:51:24am UTC
Outcome Win (1 of 3)
Accuracy 83.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")