scratch: add thoughts

This commit is contained in:
TJ DeVries
2020-09-11 14:39:20 -04:00
parent d96d89711c
commit 3316dcd7a3
3 changed files with 58 additions and 0 deletions

10
scratch/diag_test.lua Normal file
View File

@@ -0,0 +1,10 @@
local y = function() end
local x = function()
asdf
print(y)
end
x()
y()