Manu (lazyeye)

Race #7

View Pit Stop page for race #7 by lazyeyeGhost race

View profile for Manu (lazyeye)

Official speed 40.94 wpm (45.14 seconds elapsed during race)
Race Start May 31, 2011 7:51:52pm UTC
Race Finish May 31, 2011 7:52:37pm 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")