Trillian (trillianx)

Race #4

View Pit Stop page for race #4 by trillianxGhost race

View profile for Trillian (trillianx)

Official speed 56.91 wpm (32.47 seconds elapsed during race)
Race Start February 5, 2011 2:36:50am UTC
Race Finish February 5, 2011 2:37:22am UTC
Outcome No win (2 of 2)
Opponents 1. zneak (71.97 wpm)
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")