Haggis (haggis)

Race #4

View Pit Stop page for race #4 by haggisGhost race

View profile for Haggis (haggis)

Official speed 63.39 wpm (29.15 seconds elapsed during race)
Race Start February 16, 2012 8:50:13pm UTC
Race Finish February 16, 2012 8:50:42pm UTC
Outcome No win (3 of 3)
Opponents 2. pravus (66.76 wpm)
Accuracy 90.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")