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
In REPL, use prompt '-' and continuation '='. This will be consistent with SML/NJ.
Current Morel:
= val x = 1 - + 2; val x = 3 : int
SML/NJ, and desired Morel:
$ sml Standard ML of New Jersey v110.79 [built: Sat Oct 26 12:27:04 2019] - val x = 1 = + 2; val x = 3 : int
The text was updated successfully, but these errors were encountered:
Fixed in 030bd8b.
Sorry, something went wrong.
No branches or pull requests
In REPL, use prompt '-' and continuation '='. This will be consistent with SML/NJ.
Current Morel:
SML/NJ, and desired Morel:
The text was updated successfully, but these errors were encountered: