Andrei (sobercheg)

Race #13

View Pit Stop page for race #13 by soberchegGhost race

View profile for Andrei (sobercheg)

Official speed 60.00 wpm (30.80 seconds elapsed during race)
Race Start February 2, 2011 11:31:37am UTC
Race Finish February 2, 2011 11:32:07am 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")