Carlos (motumbo)

Race #5

View Pit Stop page for race #5 by motumboGhost race

View profile for Carlos (motumbo)

Official speed 27.37 wpm (67.52 seconds elapsed during race)
Race Start October 2, 2011 9:29:59pm UTC
Race Finish October 2, 2011 9:31:06pm UTC
Outcome No win (2 of 2)
Accuracy 87.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")