The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
(require anyevent-httpd)

(def s (anyevent-httpd#server {:port 9090}))

(anyevent-httpd#reg-cb s
  {"/" (fn [hd req]
    (println req)
    (anyevent-httpd#respond req
      {"content" ["text/html" "hello world"]}))
  "/test"  (fn [hd req]
    (println req)
    (anyevent-httpd#respond req
      {"content" ["text/html" "hello world"]}))})

(anyevent-httpd#run s)