this post was submitted on 09 Apr 2025
2 points (100.0% liked)

Clojure programming language discussion

535 readers
2 users here now

Clojure is a Lisp that targets JVM and JS runtimes

Finding information about Clojure

API Reference

Clojure Guides

Practice Problems

Interactive Problems

Clojure Videos

The Clojure Community

Clojure Books

Tools & Libraries

Clojure Editors

Web Platforms

founded 5 years ago
MODERATORS
 

Build Order - Using Clojure to determine build order

https://clojure-diary.gitlab.io/2025/04/09/build-order-using-clojure-to-determine-build-order.html

Code ;; build_order.clj (def graph {:h [] :c [:a :b] :e [:d :f] :g [:c :e]}) (defn has-no-dependency? [node graph] (empty? (get graph node []))) (defn all-build-steps [graph] (let [graph-keys (keys...

#clojure #clj #cljs [email protected] @clojure

no comments (yet)
sorted by: hot top controversial new old
there doesn't seem to be anything here