Twirkin Meerkat (ochu)

Race #12

View Pit Stop page for race #12 by ochuGhost race

View profile for Twirkin Meerkat (ochu)

Official speed 45.59 wpm (40.54 seconds elapsed during race)
Race Start August 5, 2011 9:04:39pm UTC
Race Finish August 5, 2011 9:05:20pm UTC
Outcome Win (1 of 3)
Accuracy 88.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")