An (annoyed)

Race #9

View Pit Stop page for race #9 by annoyedGhost race

View profile for An (annoyed)

Official speed 49.52 wpm (37.32 seconds elapsed during race)
Race Start December 26, 2009 5:56:56pm UTC
Race Finish December 26, 2009 5:57:33pm 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")