kK6e6n6n6y (k6e6n6n6y)

Race #12

View Pit Stop page for race #12 by k6e6n6n6yGhost race

View profile for kK6e6n6n6y (k6e6n6n6y)

Official speed 31.27 wpm (59.10 seconds elapsed during race)
Race Start August 13, 2012 10:13:54pm UTC
Race Finish August 13, 2012 10:14:53pm UTC
Outcome Win (1 of 3)
Accuracy 94.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")