Shinn (rockhudson)

Race #2

View Pit Stop page for race #2 by rockhudsonGhost race

View profile for Shinn (rockhudson)

Official speed 54.16 wpm (34.12 seconds elapsed during race)
Race Start March 12, 2011 1:56:52am UTC
Race Finish March 12, 2011 1:57:26am UTC
Outcome Win (1 of 2)
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")