Skip to content

Instantly share code, notes, and snippets.

@Jrende
Jrende / core.clj
Last active January 2, 2022 00:48
Clojure
(ns life.core
(:gen-class))
(defn rld [] (use 'life.core :reload))
(defn rng [from to]
(if (= from to)
[from]
(conj (rng from (dec to)) to)))
(defn mat2 [f t h]