pawitz (pawitzmu)

Race #3

View Pit Stop page for race #3 by pawitzmuGhost race

View profile for pawitz (pawitzmu)

Official speed 42.13 wpm (43.86 seconds elapsed during race)
Race Start March 30, 2011 1:34:09am UTC
Race Finish March 30, 2011 1:34:53am UTC
Outcome No win (2 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")