### Add Compojure Dependency to project.clj Source: https://github.com/weavejester/compojure/blob/master/README.md To install Compojure, add the specified dependency to your `project.clj` file. This makes the library available for use in your Clojure project. ```clojure [compojure "1.7.1"] ``` -------------------------------- ### Create a Basic Compojure Web Application Source: https://github.com/weavejester/compojure/blob/master/README.md This Clojure code snippet demonstrates how to create a simple Ring handler using Compojure. It defines two routes: a GET request for the root path ('/') returning 'Hello World', and a fallback route for 'Page not found'. ```clojure (ns hello-world.core (:require [compojure.core :refer :all] [compojure.route :as route])) (defroutes app (GET "/" [] "