shithub: werc

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