Currently, my code looks like this:
fun gradImage () =
let val iImg = Gdimage.image(640,480) (0,0,0);
val void = mapi gradient iImg;
in
Gdimage.toPng iImg "gradient.png"
end;
mapi is a function with type int*int->int*int*int->image->unit. Essentially it operates on the image supplied.
The function looks ugly with val void = ...
How could I eliminate that?
val = ...are unnecessary. I also tend to use an underscore for side-effect-only val:val _ = mapi, but that's just a style thing. – ZoogieZork Jan 1 '10 at 21:59