Jilani Khaldi wrote: > 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([]) -> []. > square( Numbers ) -> Fun = fun( N ) -> N*N end, lists:map( Fun, Numbers ). bengt