Josef (jo5ef)

Race #16

View Pit Stop page for race #16 by jo5efGhost race

View profile for Josef (jo5ef)

Official speed 85.05 wpm (21.73 seconds elapsed during race)
Race Start April 30, 2011 8:59:21pm UTC
Race Finish April 30, 2011 8:59:43pm UTC
Outcome Win (1 of 2)
Opponents 2. mpgo13 (62.42 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")