Angly (liciti)

Race #5

View Pit Stop page for race #5 by licitiGhost race

View profile for Angly (liciti)

Official speed 47.85 wpm (38.62 seconds elapsed during race)
Race Start February 1, 2011 6:57:45pm UTC
Race Finish February 1, 2011 6:58:24pm UTC
Outcome No win (4 of 4)
Opponents 3. noronham (56.43 wpm)
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")