David (xenith)

Race #1

View Pit Stop page for race #1 by xenithGhost race

View profile for David (xenith)

Official speed 33.21 wpm (55.65 seconds elapsed during race)
Race Start May 3, 2011 7:06:17pm UTC
Race Finish May 3, 2011 7:07:13pm UTC
Outcome No win (1 of 1)
Accuracy 93.0%
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")