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