wr.dd.i.go.rng (lucean)

Race #2

View Pit Stop page for race #2 by luceanGhost race

View profile for wr.dd.i.go.rng (lucean)

Official speed 25.80 wpm (71.63 seconds elapsed during race)
Race Start May 4, 2014 10:09:13pm UTC
Race Finish May 4, 2014 10:10:24pm UTC
Outcome Win (1 of 3)
Accuracy 91.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")