1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-14 08:27:03 +03:00
juvix/tests/positive/Literals.juvix

21 lines
243 B
Plaintext
Raw Normal View History

2022-03-15 14:37:33 +03:00
module Literals;
axiom Int : Type;
axiom String : Type;
2022-03-16 14:42:06 +03:00
axiom + : Int → Int → Int;
2022-03-15 14:37:33 +03:00
a : Int;
a := 12313;
b : Int;
b := -008;
2022-03-16 14:42:06 +03:00
- : Int;
- := 010;
-+-- : Int;
-+-- := - + -+--;
2022-03-15 14:37:33 +03:00
c : String;
c := "hellooooo";
2022-04-04 18:44:08 +03:00
end;