mirror of
https://github.com/anoma/juvix.git
synced 2025-01-08 16:51:53 +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
23 lines
212 B
Plaintext
23 lines
212 B
Plaintext
module Literals;
|
|
|
|
axiom Int : Type;
|
|
|
|
axiom String : Type;
|
|
|
|
axiom + : Int → Int → Int;
|
|
|
|
a : Int;
|
|
a := 12313;
|
|
|
|
b : Int;
|
|
b := -8;
|
|
|
|
- : Int;
|
|
- := 10;
|
|
|
|
-+-- : Int;
|
|
-+-- := - + -+--;
|
|
|
|
c : String;
|
|
c := "hellooooo";
|