@dudiellon (dudiellon)

Race #724

View Pit Stop page for race #724 by dudiellonGhost race

View profile for @dudiellon (dudiellon)

Official speed 61.62 wpm (29.99 seconds elapsed during race)
Race Start October 4, 2011 1:35:11am UTC
Race Finish October 4, 2011 1:35:41am UTC
Outcome Win (1 of 3)
Accuracy 90.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")