first commit

This commit is contained in:
q 2025-09-23 17:27:43 -04:00
commit dc1afb2cb2
228 changed files with 12529 additions and 0 deletions

10
apps/hello/app.rc Executable file
View file

@ -0,0 +1,10 @@
fn hello_init {
if(~ $req_path /hello) {
handler_body_main='hello_body'
pageTitle='Hi title!'
}
}
fn hello_body {
echo 'Hello world!'
}