Initial Commit

This commit is contained in:
akko
2024-10-08 11:47:30 +02:00
commit 85b6b7360f
31 changed files with 2889 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
(ns emptyhead.idea.state
"Implements the state object.")
(def empty-state
{:_properties {}
:_descriptions
{:_properties "Property-to-idea mapping."
:property {}
:property_fns {}}})
(defonce state
(atom empty-state))
(defn reset-state! []
(reset! state empty-state))