Print int list in sml
Does there any function exist that directly prints the int list? I have to print int list for debugging purposes. I know that I can achieve this by writing my own functions but I want to know that is there any other method available? SML/NJ doesn't have as many features for pretty printing as some other implementations of SML but its PRINTCONTROL signature gives some flexibility. For example, with the default settings you have this: But if in the REPL you evaluate Control.Print.printLength := 500; and Control.Print.linewidth := 80; then: In Poly/ML there is a special function PolyML.print that