Amit (amitsaha)

Race #7

View Pit Stop page for race #7 by amitsahaGhost race

View profile for Amit (amitsaha)

Official speed 44.51 wpm (41.52 seconds elapsed during race)
Race Start May 4, 2012 1:35:55pm UTC
Race Finish May 4, 2012 1:36:36pm UTC
Outcome Win (1 of 3)
Accuracy 92.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")