nomsu/tests/scopes.nom
Bruce Hill b12744d831 Some cleanup and fixes. Simplifying a lot of code, and extending the
flexibility of scoping. Redesigned Object system too.
2018-06-14 23:25:34 -07:00

17 lines
264 B
Plaintext

use "core"
%x <- "outer"
with local %x
%x <- "inner"
assume: %x = "inner"
assume: %x = "outer"
action [foo] "outer foo"
with local (foo)
action [foo] "inner foo"
assume: (foo) = "inner foo"
assume: (foo) = "outer foo"
say "Scopes test passed."