diff options
| author | TJ DeVries <devries.timothyj@gmail.com> | 2020-09-11 14:39:20 -0400 |
|---|---|---|
| committer | TJ DeVries <devries.timothyj@gmail.com> | 2020-09-11 14:39:20 -0400 |
| commit | 3316dcd7a3f77d9b37d0fb8a3db283e0a551e8d9 (patch) | |
| tree | c128bbda27324c353e6f5544d9736dca57c4ac71 /scratch/diag_test.lua | |
| parent | d96d89711ca4a9534a7edb53b29eff4fd4ab1861 (diff) | |
scratch: add thoughts
Diffstat (limited to 'scratch/diag_test.lua')
| -rw-r--r-- | scratch/diag_test.lua | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/scratch/diag_test.lua b/scratch/diag_test.lua new file mode 100644 index 0000000..589b6c2 --- /dev/null +++ b/scratch/diag_test.lua @@ -0,0 +1,10 @@ +local y = function() end + +local x = function() + asdf + print(y) +end + +x() + +y() |
