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