Tim (attilitus)

Race #3

View Pit Stop page for race #3 by attilitusGhost race

View profile for Tim (attilitus)

Official speed 53.13 wpm (34.78 seconds elapsed during race)
Race Start February 6, 2011 10:15:55am UTC
Race Finish February 6, 2011 10:16:29am 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")