Martin (msch)

Race #2

View Pit Stop page for race #2 by mschGhost race

View profile for Martin (msch)

Official speed 72.33 wpm (25.55 seconds elapsed during race)
Race Start December 23, 2009 12:31:49am UTC
Race Finish December 23, 2009 12:32:15am UTC
Outcome Win (1 of 2)
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")