Johnny (randomjohnnyh)

Race #1

View Pit Stop page for race #1 by randomjohnnyhGhost race

View profile for Johnny (randomjohnnyh)

Official speed 60.55 wpm (30.52 seconds elapsed during race)
Race Start April 10, 2012 6:49:17am UTC
Race Finish April 10, 2012 6:49:48am UTC
Outcome Win (1 of 3)
Accuracy 87.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")