little_kiwi (little_kiwi)

Race #5

View Pit Stop page for race #5 by little_kiwiGhost race

View profile for little_kiwi (little_kiwi)

Official speed 84.05 wpm (21.99 seconds elapsed during race)
Race Start May 30, 2011 12:11:10pm UTC
Race Finish May 30, 2011 12:11:32pm UTC
Outcome Win (1 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")