c4 (noobgalaxy)

Race #11

View Pit Stop page for race #11 by noobgalaxyGhost race

View profile for c4 (noobgalaxy)

Official speed 76.45 wpm (24.17 seconds elapsed during race)
Race Start October 14, 2011 8:26:05am UTC
Race Finish October 14, 2011 8:26:29am UTC
Outcome No win (1 of 1)
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")