This commit is contained in:
2026-05-07 10:03:37 -06:00
parent 9add4ed242
commit c716948932

View File

@@ -37,9 +37,9 @@ let_ name rhs e = list (el (sym "let") >>> el bindings >>> el e)
data DotList a = MkDotList (NonEmpty a) a
deriving (Show, Generic)
dotlist :: Grammar Position _ _ -> _
dotlist :: (forall t. Grammar Position (Sexp :- t) (a :- t)) -> _
dotlist x = list $ rest $ coproduct
[ x >>> iso _ _
[ x >>> _
]
lambda