shithub: werc

ref: 6b2ac6bf57e63e742ab8e2573c6f8b7d8e4176b7
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!'
}