Aldo (vxmagexv)

Race #9

View Pit Stop page for race #9 by vxmagexvGhost race

View profile for Aldo (vxmagexv)

Official speed 108.14 wpm (17.09 seconds elapsed during race)
Race Start May 9, 2015 2:23:50am UTC
Race Finish May 9, 2015 2:24:07am UTC
Outcome Win (1 of 2)
Accuracy 97.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")