Abubakar (abubakar42093)

Race #4

View Pit Stop page for race #4 by abubakar42093Ghost race

View profile for Abubakar (abubakar42093)

Official speed 46.11 wpm (40.08 seconds elapsed during race)
Race Start December 19, 2012 6:09:24am UTC
Race Finish December 19, 2012 6:10:04am UTC
Outcome Win (1 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")