Jeff (charsapoo)

Race #1

View Pit Stop page for race #1 by charsapooGhost race

View profile for Jeff (charsapoo)

Official speed 31.65 wpm (58.39 seconds elapsed during race)
Race Start February 21, 2011 1:49:05am UTC
Race Finish February 21, 2011 1:50:03am UTC
Outcome No win (2 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")