James (andromeduck)

Race #5

View Pit Stop page for race #5 by andromeduckGhost race

View profile for James (andromeduck)

Official speed 45.03 wpm (41.04 seconds elapsed during race)
Race Start February 5, 2014 5:14:47am UTC
Race Finish February 5, 2014 5:15:28am UTC
Outcome No win (2 of 2)
Opponents 1. i8pp (55.20 wpm)
Accuracy 96.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")