I was looking at this ML code and I saw this statement
fun doSomething (a, b) =
if a < b then ?? else ?? ;
What does the "??" in this context mean?
Logically thinking, then statement would equal else statement. Could it be simply forgotten to complete statements and temporary place ??
's?
None of the operators seem to represent what you are looking for.