diff options
| author | ruki <[email protected]> | 2016-01-18 15:03:43 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2016-02-15 19:10:24 +0800 |
| commit | 44c7d62676ce6763d013db0c031e6f651237f510 (patch) | |
| tree | 2b1d33176f088d05c3931d28cfe7d325cef72d41 /tests/interpreter/scope.lua | |
| parent | 0ad84316db1fee3d4010b31d12353eddf430eddc (diff) | |
rename sandbox to interpreter
Diffstat (limited to 'tests/interpreter/scope.lua')
| -rw-r--r-- | tests/interpreter/scope.lua | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/interpreter/scope.lua b/tests/interpreter/scope.lua new file mode 100644 index 000000000..438470d5c --- /dev/null +++ b/tests/interpreter/scope.lua @@ -0,0 +1,9 @@ + +print("hello") + +function test() + assert(false) +end +test() + +print("hello") |
