mirror of
https://github.com/anoma/juvix.git
synced 2024-12-13 19:49:20 +03:00
803d2008d9
* remove ≔ from the language and replace it by := * revert accidental changes in juvix input mode * update stdlib submodule * rename ℕ by Nat in the tests and examples * fix shell tests
16 lines
292 B
Plaintext
16 lines
292 B
Plaintext
module Operators;
|
|
|
|
infixl 5 + ;
|
|
axiom + : Type → Type → Type;
|
|
|
|
plus : Type → Type → Type;
|
|
plus := (+);
|
|
|
|
plus2 : Type → Type → Type → Type;
|
|
plus2 a b c := a + b + c;
|
|
|
|
plus3 : Type → Type → Type → Type → Type;
|
|
plus3 a b c d := (+) (a + b) ((+) c d);
|
|
|
|
end;
|