How can we evaluate Char functions in SML, like:
succ #"A"; should give me B, right?
But it gives me the error "unbound value identifier : succ"
|
How can we evaluate Char functions in SML, like:
But it gives me the error "unbound value identifier : succ" |
||||
|
|
|
You have to load the
Or call the function with the library name prepended:
|
||||
|
|