Stygian (untimely_demise)

Race #7

View Pit Stop page for race #7 by untimely_demiseGhost race

View profile for Stygian (untimely_demise)

Official speed 34.53 wpm (53.52 seconds elapsed during race)
Race Start October 6, 2011 1:17:56am UTC
Race Finish October 6, 2011 1:18:50am 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")