tree-sitter-dust/examples/scope.ds

10 lines
102 B
Plaintext
Raw Normal View History

2023-09-29 15:56:07 +00:00
foo = "bar";
func = 'foo';
assert_equal("bar", func());
foo = "xyz";
assert_equal("xyz", func());