c4 (noobgalaxy)

Race #1

View Pit Stop page for race #1 by noobgalaxyGhost race

View profile for c4 (noobgalaxy)

Official speed 70.66 wpm (26.15 seconds elapsed during race)
Race Start October 14, 2011 8:16:17am UTC
Race Finish October 14, 2011 8:16:44am 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")