shithub: werc

ref: 300999d3e739e00096c1bc8c3c6e9850ca28a206
dir: /apps/hello/app.rc/

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

fn hello_body {
    echo 'Hello world!'
}