tomislav (tmaric)

Race #11

View Pit Stop page for race #11 by tmaricGhost race

View profile for tomislav (tmaric)

Official speed 50.63 wpm (36.50 seconds elapsed during race)
Race Start February 16, 2014 10:35:51am UTC
Race Finish February 16, 2014 10:36:27am UTC
Outcome No win (2 of 3)
Accuracy 89.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")