sakhaprox (rportnoy)

Race #8

View Pit Stop page for race #8 by rportnoyGhost race

View profile for sakhaprox (rportnoy)

Official speed 41.87 wpm (44.14 seconds elapsed during race)
Race Start December 22, 2010 2:42:24am UTC
Race Finish December 22, 2010 2:43:08am 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")