Andrew (kirbyslayer)

Race #1

View Pit Stop page for race #1 by kirbyslayerGhost race

View profile for Andrew (kirbyslayer)

Official speed 41.87 wpm (44.14 seconds elapsed during race)
Race Start June 24, 2012 3:00:53am UTC
Race Finish June 24, 2012 3:01:37am UTC
Outcome Win (1 of 3)
Accuracy 91.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")