I'M GENIUS (samson1016)

Race #3

View Pit Stop page for race #3 by samson1016Ghost race

View profile for I'M GENIUS (samson1016)

Official speed 30.70 wpm (60.20 seconds elapsed during race)
Race Start March 20, 2011 4:32:41am UTC
Race Finish March 20, 2011 4:33:41am UTC
Outcome No win (2 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")