<div dir="ltr"><div>Hi!</div><div> </div><blockquote class="gmail_quote" style="margin: 0;margin-left: 0.8ex;border-left: 1px #ccc solid;padding-left: 1ex;"><div dir="ltr"><div>zipWith(\) z1 z2  ........ this fails but works when using * or + or - ....... I also tried using div and `div` but they failed to.</div></div></blockquote><div><br></div><div>The divide operator is slash (/) not backslash (\):</div><div><br></div><blockquote style="margin: 0 0 0 40px; border: none; padding: 0px;"><div><div><font face="courier new, monospace">> zipWith (/) [0.1, 0.2] [0.2, 0.4]</font></div></div><div><div><font face="courier new, monospace">[0.5,0.5]</font></div></div></blockquote><div><br></div><div>Also, div should work as long you're using a Integral type like Int (you may be using Float or Double):</div><div><br></div><blockquote style="margin: 0 0 0 40px; border: none; padding: 0px;"><div><div><font face="courier new, monospace">> zipWith div [1, 2] [2, 2]</font></div></div><div><div><font face="courier new, monospace">[0,1]</font></div></div></blockquote><div><br></div><div>Cheers</div></div>