Angly (liciti)

Race #7

View Pit Stop page for race #7 by licitiGhost race

View profile for Angly (liciti)

Official speed 46.20 wpm (40.00 seconds elapsed during race)
Race Start February 1, 2011 7:02:14pm UTC
Race Finish February 1, 2011 7:02:54pm UTC
Outcome No win (4 of 5)
Opponents 2. noronham (54.29 wpm)
5. jeffpc (30.25 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")