ML was used for a number of projects. I used ML to write an entire set of products and components. I've used it on the job once at Gold Disk many years ago, for the Amiga appetizer puzzle game.
From what I can recall, the code looked something like:
function foo d0, d1
{
d2.l = d0 * d1
keep d2.l
{
d2.l = d0 + d1; // silly way of demonstrating the 'keep' instruction
}
}






