tilakone icon indicating copy to clipboard operation
tilakone copied to clipboard

Minimalistic finite state machine (FSM) in Clojure

Results 5 tilakone issues
Sort by recently updated
recently updated
newest added

Hello! I've added this as a dependency but it is compiling with errors on a cljs project. ``` ------ WARNING #1 - :undeclared-var -------------------------------------------- Resource: tilakone/util.cljc:104:20 Use of undeclared Var...

Hi, thanks for this neat little library! While exploring it, I was wondering why `::tk/states` is a sequence of maps with `::tk/name` rather than a map with `::tk/name` as keys....

Cool little library. The examples in the readme and examples directory don't work with version `0.0.4` which is the dependency given in the readme. The readme and `simple.clj` examples throw...

`:count` is placed in `(-> fsm ::tk/process)` and not `fsm` itself. Without the change: ```clojure (->> ["abaaabc" "aaacb" "bbbcab"] (map (partial reduce tk/apply-signal count-ab)) (map :count)) Error printing return value...