scott (pmonkey)

Race #5

View Pit Stop page for race #5 by pmonkeyGhost race

View profile for scott (pmonkey)

Official speed 50.94 wpm (36.28 seconds elapsed during race)
Race Start February 10, 2013 8:32:48am UTC
Race Finish February 10, 2013 8:33:25am UTC
Outcome No win (2 of 3)
Accuracy 95.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")