buster 1.1 → 1.2
raw patch · 2 files changed
+4/−1 lines, 2 files
Files
- App/Behaviours/PrintEvents.hs +3/−0
- buster.cabal +1/−1
App/Behaviours/PrintEvents.hs view
@@ -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
buster.cabal view
@@ -1,5 +1,5 @@ name: buster-version: 1.1+version: 1.2 cabal-version: -any build-type: Simple license: BSD3