Josef (jo5ef)

Race #2

View Pit Stop page for race #2 by jo5efGhost race

View profile for Josef (jo5ef)

Official speed 75.54 wpm (24.46 seconds elapsed during race)
Race Start April 30, 2011 8:42:50pm UTC
Race Finish April 30, 2011 8:43:14pm UTC
Outcome Win (1 of 3)
Opponents 2. mpgo13 (58.51 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")