python from gluon import * app = Glyde() def index(): return "Hello, World!" app.add_url('/index', 'index') app.run()