Jorge Luiz (jorginholuiz)

Race #16

View Pit Stop page for race #16 by jorginholuizGhost race

View profile for Jorge Luiz (jorginholuiz)

Official speed 49.58 wpm (37.27 seconds elapsed during race)
Race Start February 24, 2015 5:26:42pm UTC
Race Finish February 24, 2015 5:27:19pm UTC
Outcome Win (1 of 3)
Accuracy 94.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")