Britto (britto07)

Race #18

View Pit Stop page for race #18 by britto07Ghost race

View profile for Britto (britto07)

Official speed 30.83 wpm (59.94 seconds elapsed during race)
Race Start July 1, 2013 5:16:54pm UTC
Race Finish July 1, 2013 5:17:54pm UTC
Outcome Win (1 of 2)
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")