10 lines
		
	
	
	
		
			166 B
		
	
	
	
		
			Text
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			166 B
		
	
	
	
		
			Text
		
	
	
		
			Executable file
		
	
	
	
	
| fn hello_init {
 | |
|     if(~ $req_path /hello) {
 | |
|         app_body_handler = 'hello_body'
 | |
|         pageTitle='Hi title!'
 | |
|     }
 | |
| }
 | |
| 
 | |
| fn hello_body {
 | |
|     echo 'Hello world!'
 | |
| }
 | 
