Lam (eeric)

Race #12

View Pit Stop page for race #12 by eericGhost race

View profile for Lam (eeric)

Official speed 53.90 wpm (34.29 seconds elapsed during race)
Race Start January 29, 2011 4:33:35am UTC
Race Finish January 29, 2011 4:34:09am 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")