Last updated 9 months ago
Compiler found a with the name that is not a valid identifier. A function name must be alphanumeric starting with a letter or an underscore (_).
_
function 123 // Error: Invalid function name 123. Name must be a valid identifier. end
Rename the function so that its name is a valid identifier:
function f123 end