<html><head></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><div><br></div><div>I meant to rewrite with syntax-parse before emailing out to show error checking. Out of time.&nbsp;</div><div><br></div><br><div><div>On Jan 2, 2013, at 11:37 AM, Robby Findler wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite"><div dir="ltr"><br><div class="gmail_extra"><br><br><div class="gmail_quote">On Wed, Jan 2, 2013 at 10:33 AM, Matthias Felleisen <span dir="ltr">&lt;<a href="mailto:matthias@ccs.neu.edu" target="_blank">matthias@ccs.neu.edu</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word"><div><br></div><div>Sean, it took me a while to figure out condlet but here is how a Racketeer would write this (questionable) macro:&nbsp;</div>
<div><br></div><div><div>(define-syntax (condlet stx)</div><div>&nbsp; (syntax-case stx ()</div><div>&nbsp; &nbsp; [(condlet ((c (x e) ...) ...) body ...)</div><div>&nbsp; &nbsp; &nbsp;#'(cond</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;[c (let* ((x '()) ... ...)</div>
<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; (let ((x e) ...)</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; body ...))]&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ...)]))</div></div><div><br></div><div>As Stephan points out, a let* suffices here because it simply doesn't matter because it simply doesn't matter which x binding body ... sees.&nbsp;</div>
<div><br></div></div></blockquote><div><br></div><div style="">This could be define-syntax-rule, no (since there's no error checking)?</div><div style=""><br></div><div style="">Robby</div><div style=""><br></div></div></div></div>
</blockquote></div><br></body></html>