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
compiling the following code:
module example export add/2 let add x y = x + y let run () = add 2 1.0
fails as the awesome statical typing tells me I can't add 2 and 1.0 the error is printed:
2
1.0
UNIFY FAIL: t_int AND t_float LINE 7 Compile error: {cannot_unify,example,7,t_int,t_float}
However the shell still starts and doesn't fail.
The text was updated successfully, but these errors were encountered:
+1 it's a little confusing -- I'd think that this might be resolved by the overhaul everything PR, too. 🤔
Sorry, something went wrong.
No branches or pull requests
compiling the following code:
fails as the awesome statical typing tells me I can't add
2
and1.0
the error is printed:However the shell still starts and doesn't fail.
The text was updated successfully, but these errors were encountered: