Juan (juanibiapina)

Race #1

View Pit Stop page for race #1 by juanibiapinaGhost race

View profile for Juan (juanibiapina)

Official speed 39.40 wpm (46.90 seconds elapsed during race)
Race Start August 12, 2011 9:19:30pm UTC
Race Finish August 12, 2011 9:20:17pm UTC
Outcome No win (2 of 4)
Opponents 3. marano (37.59 wpm)
4. mavcunha (29.22 wpm)
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")