Ben (benjkcw)

Race #7

View Pit Stop page for race #7 by benjkcwGhost race

View profile for Ben (benjkcw)

Official speed 48.95 wpm (37.75 seconds elapsed during race)
Race Start June 13, 2015 6:07:14pm UTC
Race Finish June 13, 2015 6:07:52pm UTC
Outcome No win (2 of 3)
Accuracy 90.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")