William (xoner)

Race #5

View Pit Stop page for race #5 by xonerGhost race

View profile for William (xoner)

Official speed 53.27 wpm (34.69 seconds elapsed during race)
Race Start June 20, 2012 5:49:19am UTC
Race Finish June 20, 2012 5:49:53am 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")