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
This is because in host.c we use the return value of rust_main() as the exit code, but rust_main doesn't return anything right now.
rust_main()
rust_main
To fix this:
i32
roc_main
Ok {}
0
Err
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This is because in host.c we use the return value of
rust_main()
as the exit code, butrust_main
doesn't return anything right now.To fix this:
rust_main
to returni32
roc_main
's task returnsOk {}
then return0
roc_main
's task returns anErr
then return the 32-bit integer inside itThe text was updated successfully, but these errors were encountered: