1
1
mirror of https://github.com/anoma/juvix.git synced 2025-01-08 16:51:53 +03:00
juvix/tests/positive/Literals.juvix
Jonathan Cubides 4d0267ebb9
Fix: format juvix files in test/positive (#1978)
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
2023-04-12 10:07:01 +02:00

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";