johann (juski)

Race #17

View Pit Stop page for race #17 by juskiGhost race

View profile for johann (juski)

Official speed 44.98 wpm (41.08 seconds elapsed during race)
Race Start February 25, 2011 2:28:10pm UTC
Race Finish February 25, 2011 2:28:51pm 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")