Matthew (mppp)

Race #20

View Pit Stop page for race #20 by mpppGhost race

View profile for Matthew (mppp)

Official speed 63.65 wpm (29.03 seconds elapsed during race)
Race Start December 8, 2012 12:25:58pm UTC
Race Finish December 8, 2012 12:26:27pm UTC
Outcome Win (1 of 3)
Accuracy 96.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")