Milos (xcoder)

Race #3

View Pit Stop page for race #3 by xcoderGhost race

View profile for Milos (xcoder)

Official speed 75.31 wpm (24.54 seconds elapsed during race)
Race Start February 18, 2011 12:30:57pm UTC
Race Finish February 18, 2011 12:31:21pm UTC
Outcome Win (1 of 3)
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")