11/10/2023 23:14
você já definiu float na sua função ele ta reclamando disso
pagina 165 https://github.com/pawn-lang/compiler/bl...n-lang.pdf
User-defined opera- tors: 86
Forward declaration: 82
When a function is “used” (invoked) before being declared, and that function returns a value with a tag name, the parser must make an extra pass over the source code, because the presence of the tag name may change the interpretation of operators (in the presence of user-defined operators). You can speed up the parsing/compilation process by declaring the relevant functions before using them.
pagina 165 https://github.com/pawn-lang/compiler/bl...n-lang.pdf
User-defined opera- tors: 86
Forward declaration: 82
When a function is “used” (invoked) before being declared, and that function returns a value with a tag name, the parser must make an extra pass over the source code, because the presence of the tag name may change the interpretation of operators (in the presence of user-defined operators). You can speed up the parsing/compilation process by declaring the relevant functions before using them.