scott (pmonkey)

Race #21

View Pit Stop page for race #21 by pmonkeyGhost race

View profile for scott (pmonkey)

Official speed 57.75 wpm (32.00 seconds elapsed during race)
Race Start February 10, 2013 9:14:38am UTC
Race Finish February 10, 2013 9:15:10am UTC
Outcome No win (2 of 3)
Accuracy 94.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")