e51c4ad2e9
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
30 lines
604 B
Text
30 lines
604 B
Text
precedence `+`:65
|
|
|
|
namespace nat
|
|
variable nat : Type.{1}
|
|
variable add : nat → nat → nat
|
|
infixl + := add
|
|
end nat
|
|
|
|
namespace int
|
|
open nat (nat)
|
|
variable int : Type.{1}
|
|
variable add : int → int → int
|
|
infixl + := add
|
|
variable of_nat : nat → int
|
|
coercion of_nat
|
|
end int
|
|
|
|
open int
|
|
open nat
|
|
|
|
variables n m : nat
|
|
variables i j : int
|
|
|
|
check n + m
|
|
check i + j
|
|
check i + n
|
|
check i + n + n + n + n + n + n + n + n + n + n + n +
|
|
n + n + n + n + n + n + n + n + n + n + n + n +
|
|
n + n + n + n + n + n + n + n + n + n + n + n +
|
|
n + n + n + n + n + n + n + n + n + n + n + n
|