Currently, my code looks like this: fun gradImage () = let val iImg = Gdimage.image(640,480) (0,0,0); val void = mapi gradient iImg;
I\'m having some trouble using SML/NJ interactive system, namely, that when I try to use my arrow keys (either left or right to make a correction in the expression I\'ve typed, up to repeat the last e
i\'m having some trouble with one part of a function. My function needs an input string of at least 3 characters to avoid error, to do this a want to add one or two \".\" in the var. L开发者_高级运维o
I was trying to make a tail-recursive version of this very simple SML function: fun suffixes [] = [[]]
Is it possible to write functions with dynamically typed input parameters? I tried pattern matching, but apparently it does not work like this.
I\'m looking for some kind of \"ML for beginners\" guide - google has led me to some obscure mailing lists or way-over-my-he开发者_如何学Goad texts so far.