scott (pmonkey)

Race #25

View Pit Stop page for race #25 by pmonkeyGhost race

View profile for scott (pmonkey)

Official speed 65.68 wpm (28.14 seconds elapsed during race)
Race Start February 10, 2013 4:58:06pm UTC
Race Finish February 10, 2013 4:58:34pm UTC
Outcome Win (1 of 3)
Accuracy 99.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")