Guilherme (gmotta)

Race #3

View Pit Stop page for race #3 by gmottaGhost race

View profile for Guilherme (gmotta)

Official speed 53.81 wpm (34.34 seconds elapsed during race)
Race Start August 30, 2011 6:52:21pm UTC
Race Finish August 30, 2011 6:52:55pm 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")