shithub: werc

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