2015-06-01 17:53:25 -07:00
|
|
|
import data.nat
|
|
|
|
|
|
|
|
namespace foo
|
2015-10-14 12:27:09 -07:00
|
|
|
attribute nat.add_assoc [simp]
|
|
|
|
print nat.add_assoc
|
2015-06-01 17:53:25 -07:00
|
|
|
end foo
|
|
|
|
|
2015-10-14 12:27:09 -07:00
|
|
|
print nat.add_assoc
|
2015-06-01 17:53:25 -07:00
|
|
|
|
|
|
|
namespace foo
|
2015-10-14 12:27:09 -07:00
|
|
|
print nat.add_assoc
|
|
|
|
attribute nat.add_comm [simp]
|
2015-06-01 17:53:25 -07:00
|
|
|
open nat
|
|
|
|
print "---------"
|
2015-07-22 09:01:42 -07:00
|
|
|
print [simp]
|
2015-06-01 17:53:25 -07:00
|
|
|
end foo
|