Errors
List of errors
Attempt to call a nil value
printtt("abc") -- printtt is not a function
test() -- calling before it's defined, same error
function test() end
test() -- worksUnexpected symbol near 'something'
function abc()) end -- unexpected symbol near ')'
local a = 5
a l= 15 -- unexpected symbol near 'l'
local a = 5] -- unexpected symbol near ']'Attempt to index global 'variable' (a nil value)
Attempt to perform arithmetic on a nil value
Attempt to perform arithmetic on field '?' (a nil value)
Attempt to compare nil with <TYPE>
Malformed number near <NUMBER>
Unfinished capture | Malformed pattern
Interpreting errors
Last updated