Dizzo (dizzo)

Race #2

View Pit Stop page for race #2 by dizzoGhost race

View profile for Dizzo (dizzo)

Official speed 66.66 wpm (27.72 seconds elapsed during race)
Race Start April 20, 2013 12:50:53am UTC
Race Finish April 20, 2013 12:51:21am UTC
Outcome Win (1 of 2)
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")