scott (pmonkey)

Race #37

View Pit Stop page for race #37 by pmonkeyGhost race

View profile for scott (pmonkey)

Official speed 60.64 wpm (30.47 seconds elapsed during race)
Race Start February 10, 2013 7:07:46pm UTC
Race Finish February 10, 2013 7:08:17pm UTC
Outcome Win (1 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")