Suppose I have a list in sml which is very big then sml shows a few of the entries and then starts showing # character.
Could someone tell me how could I view the wh
Shorter version of Sabastian P.'s code:
fun printList f ls = print ("[" ^ String.concatWith ", " (map f ls) ^ "]\n");