error (leonhardeuler)

Race #25

View Pit Stop page for race #25 by leonhardeulerGhost race

View profile for error (leonhardeuler)

Official speed 48.42 wpm (38.17 seconds elapsed during race)
Race Start December 31, 2011 10:54:30am UTC
Race Finish December 31, 2011 10:55:08am UTC
Outcome Win (1 of 3)
Accuracy 87.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")