Eric (ratedpr)

Race #1

View Pit Stop page for race #1 by ratedprGhost race

View profile for Eric (ratedpr)

Official speed 33.52 wpm (55.13 seconds elapsed during race)
Race Start March 3, 2011 10:02:16pm UTC
Race Finish March 3, 2011 10:03:12pm UTC
Outcome No win (3 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")