Checkpoint some existing changes.

This commit is contained in:
2023-04-10 21:24:07 -07:00
parent 6e7a7c7d04
commit 5c294850a8
6 changed files with 130 additions and 80 deletions

View File

@@ -10,10 +10,12 @@ data Kind
| Number
| Symbol
| Space
| Comment
-- not doing Layout.idr
| LBrace
| Semi
| RBrace
| EOI
export
Show Kind where
@@ -26,6 +28,8 @@ Show Kind where
show LBrace = "LBrace"
show Semi = "Semi"
show RBrace = "RBrace"
show Comment = "Comment"
show EOI = "EOI"
export
Eq Kind where