ferret is a programming language created in 2017 by Nurullah Akkaya.
#691on PLDB | 7Years Old |
git clone https://github.com/nakkaya/ferret
Ferret is a free software lisp implementation for real time embedded control systems.
;;; lazy-sum.clj
(defn positive-numbers
([]
(positive-numbers 1))
([n]
(cons n (lazy-seq (positive-numbers (inc n))))))
(println (->> (positive-numbers)
(take 5)
(apply +)))
title | date | score | comments |
---|---|---|---|
Ferret – A free software Clojure implementation | 08/07/2017 | 266 | 79 |