// Home page handler - returns HTML
ctx = context()
html = """
Duso HTTP Server
Welcome to Duso
A lightweight, embeddable scripting language
Try these routes:
"""
exit({
"status" = 200,
"body" = html,
"headers" = {"Content-Type" = "text/html; charset=utf-8"}
})