Hi,<div>I'm trying to learn Scheme's hygienic macro system, and was wondering how you would write something like the following:</div><div><br></div><div>Say I think the current let is too verbose, and want to change it to this:</div>
<div><br></div><div>(mylet [a 1</div><div> b 2</div><div> c 3]</div><div> (display a)</div><div> (display b)</div><div> (display c))</div><div><br></div><div>I know how to do this using Lisp-style macros, but I'm not too familiar with how to use the ellipsis ... effectively.</div>
<div><br></div><div>Thanks for your help</div><div> -Patrick</div>