2014-11-30 21:16:01 -08:00
|
|
|
prelude
|
2014-06-26 10:30:43 -07:00
|
|
|
precedence `+`:65
|
|
|
|
|
|
|
|
namespace nat
|
2014-10-02 16:20:52 -07:00
|
|
|
constant nat : Type.{1}
|
|
|
|
constant add : nat → nat → nat
|
2014-06-26 10:30:43 -07:00
|
|
|
infixl + := add
|
2014-08-07 16:59:08 -07:00
|
|
|
end nat
|
2014-06-26 10:30:43 -07:00
|
|
|
|
|
|
|
namespace int
|
2014-09-03 16:00:38 -07:00
|
|
|
open nat (nat)
|
2014-10-02 16:20:52 -07:00
|
|
|
constant int : Type.{1}
|
|
|
|
constant add : int → int → int
|
2014-06-26 10:30:43 -07:00
|
|
|
infixl + := add
|
2014-10-02 16:20:52 -07:00
|
|
|
constant of_nat : nat → int
|
2014-06-26 10:30:43 -07:00
|
|
|
namespace coercions
|
2015-01-24 20:23:21 -08:00
|
|
|
attribute of_nat [coercion]
|
2014-08-07 16:59:08 -07:00
|
|
|
end coercions
|
|
|
|
end int
|
2014-06-26 10:30:43 -07:00
|
|
|
|
2014-09-03 16:00:38 -07:00
|
|
|
open nat
|
|
|
|
open int
|
2014-10-02 16:20:52 -07:00
|
|
|
constants n m : nat
|
2014-06-26 10:30:43 -07:00
|
|
|
check n+m -- coercion nat -> int is not available
|
2014-09-03 16:00:38 -07:00
|
|
|
open int.coercions
|
2014-06-26 10:30:43 -07:00
|
|
|
check n+m -- coercion nat -> int is available
|