scott (pmonkey)

Race #14

View Pit Stop page for race #14 by pmonkeyGhost race

View profile for scott (pmonkey)

Official speed 58.82 wpm (31.42 seconds elapsed during race)
Race Start February 10, 2013 8:46:04am UTC
Race Finish February 10, 2013 8:46:36am 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")