Added lua scripts for testing error checking

This commit is contained in:
j4nk 2023-05-31 09:27:41 -04:00
parent 1d6d8f69ca
commit 61b50c8fe8
2 changed files with 12 additions and 0 deletions

4
incorrect_oct_init.lua Normal file
View File

@ -0,0 +1,4 @@
function oct_init()
x = 0;
x = x + "asdf"
end

8
incorrect_oct_loop.lua Normal file
View File

@ -0,0 +1,8 @@
function oct_init()
end
function oct_loop()
x = 0;
x = x + "asdf"
end