Sam (samphippen)

Race #4

View Pit Stop page for race #4 by samphippenGhost race

View profile for Sam (samphippen)

Official speed 99.42 wpm (18.59 seconds elapsed during race)
Race Start March 26, 2011 1:32:46am UTC
Race Finish March 26, 2011 1:33:04am UTC
Outcome Win (1 of 2)
Opponents 2. rbarlow (55.65 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")