scottie (scottie584)

Race #5

View Pit Stop page for race #5 by scottie584Ghost race

View profile for scottie (scottie584)

Official speed 35.93 wpm (51.43 seconds elapsed during race)
Race Start June 2, 2013 8:19:35am UTC
Race Finish June 2, 2013 8:20:27am UTC
Outcome No win (2 of 2)
Accuracy 88.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")