untitled.gif welcome towards my cool internet house site:
dear anybody who nos ML (zoom)
[ back |
refresh |
last 25 |
post new
]
welcome to my cool internet home sit
is prosecÇ–tedt to a jam
Hair Cares Product!!!!!
| dear anybody who nos ML |
| [29815] by "max cooking" (ce-web1.wesleyan.edu)
on Fri 12 Dec 2003 15:41:12
[ reply ] [ top ]
|
y doesnt this work:
function 2 make a list of factors of x from a given list:
fun isfactor [] x = []
| isfactor (h::t) x =
if x mod h = 0
then h :: (isfactor t)
else isfactor t; |
|
|
|