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