@dudiellon (dudiellon)

Race #395

View Pit Stop page for race #395 by dudiellonGhost race

View profile for @dudiellon (dudiellon)

Official speed 79.31 wpm (23.30 seconds elapsed during race)
Race Start July 29, 2011 10:34:19am UTC
Race Finish July 29, 2011 10:34:42am UTC
Outcome Win (1 of 3)
Accuracy 99.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")