(ns webapp.core (:require [compojure.core :refer [defroutes GET]] [org.httpkit.server :as http] [hiccup.core :as hiccup])) (defn root [] (hiccup/html [:h1 "Hello, Hiccup!"])) (defroutes app (GET "/" [] (root)))