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.

I have written an ml function and in the output i am getting out = Mary ("a",[Zary #,Zary #]) where Mary and Zary are constructors. But as you can see there are some "#" in the output. if i do val Mary("a",x) = out; then it is showing x = [Zary("b"),Zary("c")]; which is right.

I want to get the complete output instead of hashes. Kindly help me.

share|improve this question
1  
"ml"? "html"? What is it? Which is it? In any case, it's off topic for this site. Please click the flag link and ask a moderator to move it to the correct site. Stack Overflow? Plus, for extra credit, read the FAQ. – Dennis Williamson Mar 13 '11 at 13:42
This is a duplicate of expanding # in sml and Output is truncated with #-signs in the REPL – Jesper.Reenberg Mar 14 '11 at 16:35

migrated from serverfault.com Mar 13 '11 at 14:23

1 Answer

up vote 2 down vote accepted

If (as seems to be the case) you're using SML/NJ, then you need to set either Control.Print.printDepth or Compiler.Control.Print.printDepth (depending on which version of SML/NJ you're using) to a value larger than its default.

The hashes are used as an abbreviation, to make complicated output more manageable. The thresholds governing how complicated a given bit of output has to be before eliding it are rather low. (There's a printLength threshold too, governing elision of long lists as opposed to deeply-nested structures.)

See http://www.smlnj.org/doc/Compiler/pages/printcontrol.html for the official documentation.

share|improve this answer
Thanks, that was the trick. – Jatin Kumar May 16 '11 at 10:20

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.