Anthony (white_snake)

Race #39

View Pit Stop page for race #39 by white_snakeGhost race

View profile for Anthony (white_snake)

Official speed 50.64 wpm (36.49 seconds elapsed during race)
Race Start January 30, 2011 9:31:47am UTC
Race Finish January 30, 2011 9:32:23am 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")