Jorge Luiz (jorginholuiz)

Race #6

View Pit Stop page for race #6 by jorginholuizGhost race

View profile for Jorge Luiz (jorginholuiz)

Official speed 48.99 wpm (37.72 seconds elapsed during race)
Race Start February 21, 2015 12:32:42pm UTC
Race Finish February 21, 2015 12:33:20pm 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")