diff options
| author | ame <[email protected]> | 2024-09-30 02:06:47 -0500 |
|---|---|---|
| committer | ame <[email protected]> | 2024-09-30 02:06:47 -0500 |
| commit | 1cc24fda87c3e8df90a5ea2d526ce39adf4a7648 (patch) | |
| tree | 6409e4b3c43b17e9c73d2b29193450712fb63190 /tests/loc.lua | |
| parent | eda53f915dc319cec7a4fe680734db87a113fe5e (diff) | |
cookies, sendfile fixes, and local var tests
Diffstat (limited to 'tests/loc.lua')
| -rw-r--r-- | tests/loc.lua | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/loc.lua b/tests/loc.lua new file mode 100644 index 0000000..d50b9de --- /dev/null +++ b/tests/loc.lua @@ -0,0 +1,15 @@ +llby = require "lullaby" + +local nya = "mya" +uwu = "bye" +local _o = _G +_G.ooo = "mya" +print(_o.ooo) +local owo = "hi" + +function a() + local meo = "a" + llby.test.stack_dump() +end + +a() |
