S (sestevens)

Race #1

View Pit Stop page for race #1 by sestevensGhost race

View profile for S (sestevens)

Official speed 62.33 wpm (29.65 seconds elapsed during race)
Race Start March 14, 2011 4:24:53pm UTC
Race Finish March 14, 2011 4:25:22pm UTC
Outcome No win (1 of 1)
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")