2014-10-02 23:20:52 +00:00
|
|
|
constant N : Type.{1}
|
2014-06-14 01:06:44 +00:00
|
|
|
namespace foo
|
2014-10-02 23:20:52 +00:00
|
|
|
constant N : Type.{2}
|
2014-06-14 01:06:44 +00:00
|
|
|
namespace tst
|
2014-10-02 23:20:52 +00:00
|
|
|
constant N : Type.{3}
|
2014-06-14 01:06:44 +00:00
|
|
|
print raw N
|
2014-08-07 23:59:08 +00:00
|
|
|
end tst
|
|
|
|
end foo
|
2014-06-14 01:06:44 +00:00
|
|
|
print raw N
|
|
|
|
namespace foo
|
|
|
|
print raw N
|
|
|
|
namespace tst
|
|
|
|
print raw N N -> N
|
|
|
|
section
|
2014-10-09 14:13:06 +00:00
|
|
|
variable N : Type.{4} -- Shadow previous ones.
|
2014-06-14 01:06:44 +00:00
|
|
|
print raw N
|
|
|
|
end
|
2014-08-07 23:59:08 +00:00
|
|
|
end tst
|
2014-10-02 23:20:52 +00:00
|
|
|
end foo
|