THANK YOU (qwertydude6)

Race #2

View Pit Stop page for race #2 by qwertydude6Ghost race

View profile for THANK YOU (qwertydude6)

Official speed 26.98 wpm (68.50 seconds elapsed during race)
Race Start May 29, 2011 12:33:12am UTC
Race Finish May 29, 2011 12:34:20am UTC
Outcome Win (1 of 3)
Accuracy 85.0%
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")