Leslie (baconlegion)

Race #2

View Pit Stop page for race #2 by baconlegionGhost race

View profile for Leslie (baconlegion)

Official speed 33.80 wpm (54.67 seconds elapsed during race)
Race Start April 2, 2013 4:15:11pm UTC
Race Finish April 2, 2013 4:16:05pm UTC
Outcome Win (1 of 3)
Accuracy 84.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")