We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Given the file main.vi with
main.vi
pub fn main(&io: &IO) { }
the following error occurs:
error main.vi:1:1 - duplicate definition of `main` error - cannot find `main` in `::main`
This is because the ::main::main function definition clashes with the internal ::main node that is used as entry point to the program.
::main::main
::main
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Given the file
main.vi
withthe following error occurs:
This is because the
::main::main
function definition clashes with the internal::main
node that is used as entry point to the program.The text was updated successfully, but these errors were encountered: