You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, real is an eqtype which it shouldn't be, according to the SML Standard (see Appendix C). In particular, the following code should fail to elaborate:
1.0 = 1.0;
fn x => x = 1.0;
Further, the current equality on real does not work too well (as one would expect, I'd say):
Moscow ML version 2.10
Enter `quit();' to quit.
- 1.0000000000000001 = 1.0;
> val it = true : bool
- 1.0000000000000001;
> val it = 1.0 : real
The text was updated successfully, but these errors were encountered:
Currently,
real
is aneqtype
which it shouldn't be, according to the SML Standard (see Appendix C). In particular, the following code should fail to elaborate:Further, the current equality on
real
does not work too well (as one would expect, I'd say):The text was updated successfully, but these errors were encountered: