@dudiellon (dudiellon)

Race #53

View Pit Stop page for race #53 by dudiellonGhost race

View profile for @dudiellon (dudiellon)

Official speed 50.19 wpm (36.82 seconds elapsed during race)
Race Start March 6, 2011 1:11:06pm UTC
Race Finish March 6, 2011 1:11:43pm UTC
Outcome Win (1 of 3)
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")