I'M GENIUS (samson1016)

Race #1

View Pit Stop page for race #1 by samson1016Ghost race

View profile for I'M GENIUS (samson1016)

Official speed 28.61 wpm (64.59 seconds elapsed during race)
Race Start March 19, 2011 9:54:55am UTC
Race Finish March 19, 2011 9:55:59am 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")