shithub: werc

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