Samz (sam261)

Race #28

View Pit Stop page for race #28 by sam261Ghost race

View profile for Samz (sam261)

Official speed 42.81 wpm (43.17 seconds elapsed during race)
Race Start February 2, 2011 10:17:01am UTC
Race Finish February 2, 2011 10:17:44am 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")