Rahul (jet_blazer)

Race #32

View Pit Stop page for race #32 by jet_blazerGhost race

View profile for Rahul (jet_blazer)

Official speed 77.93 wpm (23.71 seconds elapsed during race)
Race Start July 3, 2011 5:12:50pm UTC
Race Finish July 3, 2011 5:13:14pm UTC
Outcome Win (1 of 3)
Accuracy 98.0%
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")