@dudiellon (dudiellon)

Race #315

View Pit Stop page for race #315 by dudiellonGhost race

View profile for @dudiellon (dudiellon)

Official speed 71.58 wpm (25.82 seconds elapsed during race)
Race Start July 21, 2011 3:08:39pm UTC
Race Finish July 21, 2011 3:09:05pm UTC
Outcome Win (1 of 3)
Accuracy 93.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")