Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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"

share|improve this question

1 Answer

You have to load the Char library to use its functions. Either load it into the global scope:

open Char;
succ #"A";

Or call the function with the library name prepended:

Char.succ #"A";
share|improve this answer
thanks a lot. I am new to SML, i will need your help... – ijaz Aug 17 '12 at 3:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.