Skip to content

Instantly share code, notes, and snippets.

@zikajk
zikajk / user.clj
Last active May 12, 2025 12:30
FlowStorm: Debugging and Understanding Clojure Code on a New Level
(ns user
(:require [quil.core :as q]
[flow-storm.api :as fsa]))
(defn setup []
(q/frame-rate 1) ;; Set framerate to 1 FPS
(q/background 200)
(fsa/bookmark "Quil setup function complete")) ;; Set the background colour
(defn make-ellipse [x y diam]