Cuyler (trekkie)

Race #2

View Pit Stop page for race #2 by trekkieGhost race

View profile for Cuyler (trekkie)

Official speed 75.63 wpm (24.43 seconds elapsed during race)
Race Start August 13, 2011 4:34:13pm UTC
Race Finish August 13, 2011 4:34:38pm UTC
Outcome Win (1 of 3)
Accuracy 97.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")