Shrikanth (shrikanth)

Race #2

View Pit Stop page for race #2 by shrikanthGhost race

View profile for Shrikanth (shrikanth)

Official speed 44.93 wpm (41.13 seconds elapsed during race)
Race Start August 12, 2011 10:23:32pm UTC
Race Finish August 12, 2011 10:24:13pm UTC
Outcome Win (1 of 2)
Opponents 2. miwck (38.27 wpm)
Accuracy 91.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")