2014-08-25 02:58:48 +00:00
|
|
|
import logic
|
2014-09-04 23:36:06 +00:00
|
|
|
|
2014-07-08 02:15:46 +00:00
|
|
|
|
2014-10-02 23:20:52 +00:00
|
|
|
constant foo : Prop
|
2014-07-08 02:15:46 +00:00
|
|
|
|
|
|
|
namespace N1
|
2014-10-02 23:20:52 +00:00
|
|
|
constant foo : Prop
|
2014-07-08 02:15:46 +00:00
|
|
|
check N1.foo
|
|
|
|
check _root_.foo
|
|
|
|
namespace N2
|
2014-10-02 23:20:52 +00:00
|
|
|
constant foo : Prop
|
2014-07-08 02:15:46 +00:00
|
|
|
check N1.foo
|
|
|
|
check N1.N2.foo
|
|
|
|
print raw foo
|
|
|
|
print raw _root_.foo
|
2014-08-07 23:59:08 +00:00
|
|
|
end N2
|
|
|
|
end N1
|