diff --git a/App/Behaviours/PrintEvents.hs b/App/Behaviours/PrintEvents.hs
--- a/App/Behaviours/PrintEvents.hs
+++ b/App/Behaviours/PrintEvents.hs
@@ -28,4 +28,7 @@
           showIfPossible (EChar x) = char x
           showIfPossible (EOther x) = text "Custom Data"
           showIfPossible (EOtherL x) = text "Custom Data List"
+          showIfPossible (EAssoc (x,y)) = text "x -> " <> showIfPossible y
+          showIfPossible (EAssocL assocs) = vcat (map showAssoc assocs)
+          showAssoc (x, y) = text x <> showIfPossible y
 	
diff --git a/buster.cabal b/buster.cabal
--- a/buster.cabal
+++ b/buster.cabal
@@ -1,5 +1,5 @@
 name: buster
-version: 1.1
+version: 1.2
 cabal-version: -any
 build-type: Simple
 license: BSD3
