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
21 lines
276 B
Plaintext
21 lines
276 B
Plaintext
module Judoc;
|
|
|
|
axiom A : Type;
|
|
|
|
axiom b : Type;
|
|
|
|
type T :=
|
|
| t : T;
|
|
|
|
--- he ;id A; and ;A A id T A id; this is another ;id
|
|
id
|
|
id; example
|
|
--- hahahah
|
|
--- and another one ;T;
|
|
id : {A : Type} → A → A;
|
|
id a := a;
|
|
|
|
--- hellowww
|
|
id2 : {A : Type} → A → A;
|
|
id2 a := a;
|