zat (teacup)

Race #15

View Pit Stop page for race #15 by teacupGhost race

View profile for zat (teacup)

Official speed 55.40 wpm (33.36 seconds elapsed during race)
Race Start February 6, 2011 2:35:21pm UTC
Race Finish February 6, 2011 2:35:54pm UTC
Outcome No win (3 of 3)
Opponents 1. predikt (76.00 wpm)
2. jeissoni (66.70 wpm)
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")