Advertisement
Guest User

Untitled

a guest
Jan 24th, 2017
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. fun polyGen L = let fun poly [] x = 0.0
  2.                       | poly (hd::tl) x = hd + x*(poly tl x);
  3.                 in fn x => poly L x end;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement