Gabor (gktek)

Race #28

View Pit Stop page for race #28 by gktekGhost race

View profile for Gabor (gktek)

Official speed 100.63 wpm (18.36 seconds elapsed during race)
Race Start March 4, 2010 6:15:08pm UTC
Race Finish March 4, 2010 6:15:27pm UTC
Outcome Win (1 of 3)
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")