Duke (albinokitty)

Race #2

View Pit Stop page for race #2 by albinokittyGhost race

View profile for Duke (albinokitty)

Official speed 33.34 wpm (55.43 seconds elapsed during race)
Race Start April 7, 2013 7:47:01am UTC
Race Finish April 7, 2013 7:47:56am UTC
Outcome Win (1 of 3)
Accuracy 91.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")