Wayne (bachi95)

Race #15

View Pit Stop page for race #15 by bachi95Ghost race

View profile for Wayne (bachi95)

Official speed 45.88 wpm (40.28 seconds elapsed during race)
Race Start April 13, 2013 5:06:33am UTC
Race Finish April 13, 2013 5:07:13am UTC
Outcome Win (1 of 3)
Accuracy 95.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")