Andrei (sobercheg)

Race #15

View Pit Stop page for race #15 by soberchegGhost race

View profile for Andrei (sobercheg)

Official speed 61.06 wpm (30.27 seconds elapsed during race)
Race Start February 2, 2011 11:33:53am UTC
Race Finish February 2, 2011 11:34:23am 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")