@dudiellon (dudiellon)

Race #140

View Pit Stop page for race #140 by dudiellonGhost race

View profile for @dudiellon (dudiellon)

Official speed 64.32 wpm (28.73 seconds elapsed during race)
Race Start July 5, 2011 12:26:50am UTC
Race Finish July 5, 2011 12:27:19am UTC
Outcome Win (1 of 3)
Accuracy 94.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")