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