Steven (whathecode)

Race #7

View Pit Stop page for race #7 by whathecodeGhost race

View profile for Steven (whathecode)

Official speed 83.90 wpm (22.03 seconds elapsed during race)
Race Start July 25, 2011 10:47:17pm UTC
Race Finish July 25, 2011 10:47:39pm UTC
Outcome Win (1 of 3)
Accuracy 100.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")