@dudiellon (dudiellon)

Race #650

View Pit Stop page for race #650 by dudiellonGhost race

View profile for @dudiellon (dudiellon)

Official speed 62.37 wpm (29.63 seconds elapsed during race)
Race Start September 24, 2011 1:28:03am UTC
Race Finish September 24, 2011 1:28:33am UTC
Outcome No win (2 of 3)
Accuracy 89.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")