@dudiellon (dudiellon)

Race #539

View Pit Stop page for race #539 by dudiellonGhost race

View profile for @dudiellon (dudiellon)

Official speed 61.28 wpm (30.16 seconds elapsed during race)
Race Start August 12, 2011 4:10:31pm UTC
Race Finish August 12, 2011 4:11:02pm 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")