Hi All, Is there a better way to write this code when there is a lot of elements in the list? square([H|T]) -> [(H*H|square(T)]; square([]) -> []. Thanks. jilani