0110: Function must return N values
function foo
return 1 // error, `foo` should return nothing
endfunction bar: int
return
endPossible solutions:
function bar: optional int
if ...
then
return 1
else
return
end
endPrevious0109: Expected variables to store function resultNext0111: Function not found in current scope
Last updated