Dan (randoone)

Race #13

View Pit Stop page for race #13 by randooneGhost race

View profile for Dan (randoone)

Official speed 38.54 wpm (47.95 seconds elapsed during race)
Race Start October 6, 2013 5:37:04am UTC
Race Finish October 6, 2013 5:37:52am UTC
Outcome Win (1 of 3)
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")