werc/apps/hello/app.rc
2008-12-28 11:51:03 +01:00

11 lines
166 B
Plaintext
Executable File

fn hello_init {
if(~ $req_path /hello) {
app_body_handler = 'hello_body'
pageTitle='Hi title!'
}
}
fn hello_body {
echo 'Hello world!'
}