2014-07-07 19:15:46 -07:00
|
|
|
import standard
|
|
|
|
using num
|
|
|
|
|
2014-07-22 09:43:18 -07:00
|
|
|
variable foo : Prop
|
2014-07-07 19:15:46 -07:00
|
|
|
|
|
|
|
namespace N1
|
2014-07-22 09:43:18 -07:00
|
|
|
variable foo : Prop
|
2014-07-07 19:15:46 -07:00
|
|
|
check N1.foo
|
|
|
|
check _root_.foo
|
|
|
|
namespace N2
|
2014-07-22 09:43:18 -07:00
|
|
|
variable 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
|
2014-07-07 19:15:46 -07:00
|
|
|
|
|
|
|
|
|
|
|
|