Skip to content
Snippets Groups Projects
Commit 04f588de authored by Robbert Krebbers's avatar Robbert Krebbers
Browse files

Add space to pretty printed notation ;; for seq.

parent ddbc49ba
No related branches found
No related tags found
No related merge requests found
......@@ -62,9 +62,9 @@ Notation "'let:' x := e1 'in' e2" := (Lam x e2%L e1%L)
Notation "'let:' x := e1 'in' e2" := (LamV x e2%L e1%L)
(at level 102, x at level 1, e1, e2 at level 200) : lang_scope.
Notation "e1 ;; e2" := (Lam "" e2%L e1%L)
(at level 100, e2 at level 200) : lang_scope.
(at level 100, e2 at level 200, format "e1 ;; e2") : lang_scope.
Notation "e1 ;; e2" := (LamV "" e2%L e1%L)
(at level 100, e2 at level 200) : lang_scope.
(at level 100, e2 at level 200, format "e1 ;; e2") : lang_scope.
Notation "'rec:' f x y := e" := (Rec f x (Lam y e%L))
(at level 102, f, x, y at level 1, e at level 200) : lang_scope.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment