Damien (damz)

Race #378

View Pit Stop page for race #378 by damzGhost race

View profile for Damien (damz)

Official speed 62.39 wpm (29.62 seconds elapsed during race)
Race Start December 28, 2008 7:52:44pm UTC
Race Finish December 28, 2008 7:53:14pm UTC
Outcome No win (3 of 4)
Opponents 1. kyril (79.25 wpm)
2. motsak (73.54 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")