<div class="gmail_quote"><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">You&#39;re probably right.<br>
I&#39;ve played around with LISP macros a little, but it seems that most<br>
of the cases where you would use a macro in LISP you don&#39;t need one in<br>
haskell due to lazy evaluation. &nbsp;Although I haven&#39;t played around with<br>
them enough to say much one way or another.<br>
<br>
Do you know of a particular example where a macro would be a big help<br>
in haskell?<br>
</blockquote></div><br>Well, like many good programming tools, Lisp macros are another abstraction, but instead of dealing with data, they deal with code.&nbsp; They are a syntactic abstraction.&nbsp; They&#39;re often described as &quot;programs that write programs.&quot;&nbsp; We all know how much Haskell likes abstractions ;)<br>