Samz (sam261)

Race #16

View Pit Stop page for race #16 by sam261Ghost race

View profile for Samz (sam261)

Official speed 46.19 wpm (40.01 seconds elapsed during race)
Race Start January 30, 2011 11:51:55am UTC
Race Finish January 30, 2011 11:52:35am 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")