Compiler found a duplicate function declaration in current scope. Each function should have a unique name and duplicates are not allowed:
function foo end function foo // Error: Duplicate function declaration foo. end
rename the function to give it a unique name
Last updated 1 year ago