! FACTOR CODE USING: kernel accessors threads namespaces http.server http.server.dispatchers furnace furnace.actions ; IN: hello-web TUPLE: hello-dispatcher < dispatcher ; : ( -- action ) { hello-dispatcher "hello" } >>template ; : ( -- responder ) hello-dispatcher new-dispatcher "" add-responder ; : run-hello ( -- ) main-responder set-global [ 8080 httpd ] in-thread ; ! CHLOE TEMPLATE O hai!