DaCaN (dacan)

Race #21

View Pit Stop page for race #21 by dacanGhost race

View profile for DaCaN (dacan)

Official speed 59.89 wpm (30.86 seconds elapsed during race)
Race Start February 15, 2011 2:18:31pm UTC
Race Finish February 15, 2011 2:19:01pm 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")