kK6e6n6n6y (k6e6n6n6y)

Race #2

View Pit Stop page for race #2 by k6e6n6n6yGhost race

View profile for kK6e6n6n6y (k6e6n6n6y)

Official speed 32.65 wpm (56.60 seconds elapsed during race)
Race Start August 13, 2012 9:46:58pm UTC
Race Finish August 13, 2012 9:47:55pm UTC
Outcome Win (1 of 3)
Accuracy 92.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")