over90 (over90)

Race #1

View Pit Stop page for race #1 by over90Ghost race

View profile for over90 (over90)

Official speed 21.72 wpm (85.08 seconds elapsed during race)
Race Start March 17, 2011 2:43:07am UTC
Race Finish March 17, 2011 2:44:32am 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")