error (leonhardeuler)

Race #52

View Pit Stop page for race #52 by leonhardeulerGhost race

View profile for error (leonhardeuler)

Official speed 51.62 wpm (35.80 seconds elapsed during race)
Race Start January 20, 2012 7:45:38am UTC
Race Finish January 20, 2012 7:46:14am UTC
Outcome Win (1 of 3)
Accuracy 91.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")