mirror of
https://github.com/anoma/juvix.git
synced 2024-12-04 06:23:13 +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
7 lines
75 B
Plaintext
7 lines
75 B
Plaintext
module Nat;
|
|
|
|
builtin nat
|
|
type Nat :=
|
|
| zero : Nat
|
|
| suc : Nat → Nat;
|