Skip to content

reactive style programming experiment in Clojure

Notifications You must be signed in to change notification settings

jclaggett/hassle

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Hassle

An experimental reactive functional library for Clojure. The primary goal is to demonstrate the ability to express programs as a DAG of functions over streams of events.

#_procedural-imperative
(defn main []
  (println "Hello World!"))

#_functional-declarative
(def main
  (->> (input :init)
       (node (map #(str "Hello World")))
       (output :stdout)
       (net 'main)))

Usage

Refer to docs/xf-nets.clj for an introduction to the various functions and supporting concepts.

About

reactive style programming experiment in Clojure

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published