Andrei (sobercheg)

Race #6

View Pit Stop page for race #6 by soberchegGhost race

View profile for Andrei (sobercheg)

Official speed 64.42 wpm (28.69 seconds elapsed during race)
Race Start February 2, 2011 10:42:11am UTC
Race Finish February 2, 2011 10:42:39am 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")