Is there any way to print full list using SML?
Usually what happen is in SML when I have too many elements it prints first few elements separated by "," and then it omits the rest of the list with ... but I want to see the full list. Is there any way to do that?
val a =[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,18,19,20]
then If i write on REPL a it returns something like:
a=[1,2,3,4,5,...]
