shithub: werc

ref: 76e8e46c46f9df6b92fd71fa286d93d113a95128
dir: /apps/hello/app.rc/

View raw version
fn hello_init {
    if(~ $req_path /hello) {
        app_body_handler = 'hello_body'
        pageTitle='Hi title!'
    }
}

fn hello_body {
    echo 'Hello world!'
}