Felix (flashy123)

Race #13

View Pit Stop page for race #13 by flashy123Ghost race

View profile for Felix (flashy123)

Official speed 69.78 wpm (26.48 seconds elapsed during race)
Race Start January 28, 2011 11:58:49am UTC
Race Finish January 28, 2011 11:59:15am 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")