Luke (superluke)

Race #45

View Pit Stop page for race #45 by superlukeGhost race

View profile for Luke (superluke)

Official speed 39.90 wpm (46.32 seconds elapsed during race)
Race Start November 19, 2012 8:57:50pm UTC
Race Finish November 19, 2012 8:58:36pm UTC
Outcome No win (2 of 3)
Accuracy 93.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")