@dudiellon (dudiellon)

Race #65

View Pit Stop page for race #65 by dudiellonGhost race

View profile for @dudiellon (dudiellon)

Official speed 50.88 wpm (36.32 seconds elapsed during race)
Race Start April 14, 2011 4:50:28am UTC
Race Finish April 14, 2011 4:51:04am UTC
Outcome Win (1 of 2)
Opponents 2. elienai2 (31.46 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")