mirror of
https://github.com/anoma/juvix.git
synced 2024-12-12 14:28:08 +03:00
4d0267ebb9
This PR fixes a formatting issue that drops blank lines between axiom declarations. It goes after: - #1980 - Closes https://github.com/anoma/juvix/issues/1986
6 lines
93 B
Plaintext
6 lines
93 B
Plaintext
module Data.Maybe;
|
|
|
|
type Maybe (a : Type) :=
|
|
| nothing : Maybe a
|
|
| just : a → Maybe a;
|