David (quine)

Race #9

View Pit Stop page for race #9 by quineGhost race

View profile for David (quine)

Official speed 82.29 wpm (22.46 seconds elapsed during race)
Race Start October 17, 2013 10:09:07pm UTC
Race Finish October 17, 2013 10:09:30pm UTC
Outcome Win (1 of 2)
Opponents 2. pentalon (70.51 wpm)
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")