Paul (masterxilo)

Race #21

View Pit Stop page for race #21 by masterxiloGhost race

View profile for Paul (masterxilo)

Official speed 44.68 wpm (41.36 seconds elapsed during race)
Race Start March 27, 2013 12:19:25pm UTC
Race Finish March 27, 2013 12:20:06pm UTC
Outcome Win (1 of 3)
Accuracy 92.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")