Light (shadesoflight)

Race #11

View Pit Stop page for race #11 by shadesoflightGhost race

View profile for Light (shadesoflight)

Official speed 67.48 wpm (27.39 seconds elapsed during race)
Race Start April 29, 2011 11:20:00pm UTC
Race Finish April 29, 2011 11:20:27pm 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")