Edwin (lolololpie)

Race #7

View Pit Stop page for race #7 by lolololpieGhost race

View profile for Edwin (lolololpie)

Official speed 78.09 wpm (23.66 seconds elapsed during race)
Race Start April 9, 2011 12:19:47pm UTC
Race Finish April 9, 2011 12:20:11pm 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")