sakhaprox (rportnoy)

Race #13

View Pit Stop page for race #13 by rportnoyGhost race

View profile for sakhaprox (rportnoy)

Official speed 49.52 wpm (37.32 seconds elapsed during race)
Race Start December 22, 2010 2:50:52am UTC
Race Finish December 22, 2010 2:51:29am 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")