gart (icoder)

Race #13

View Pit Stop page for race #13 by icoderGhost race

View profile for gart (icoder)

Official speed 40.48 wpm (45.65 seconds elapsed during race)
Race Start February 6, 2013 8:23:24am UTC
Race Finish February 6, 2013 8:24:10am UTC
Outcome Win (1 of 3)
Accuracy 94.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")