<div>
                    <div>Hello,</div><div><br></div><div>I have been trying to write &nbsp;a macro to allow me to omit some parentheses in complicated expressions with many complicated sub-expressions in the tail position.&nbsp;</div><div><br></div><div>(I want the dollar sign to work exactly as it does in Haskell)</div><div><br></div><div>I want to be able to write&nbsp;</div><div><br></div><div><blockquote type="cite">(map (lambda (str) (string-append "Hello, " str)) $ string-titlecase $ list "Alice "Bob" "Eve")</blockquote></div><div><br></div><div>and have it expand to</div><div><br></div><div><blockquote type="cite">(map (lambda (str) (string-append "Hello, " str)) (string-titlecase (list "Alice "Bob" "Eve")))</blockquote><div><br></div><div>My most recent attempt at this macro is&nbsp;</div><div>&nbsp;</div></div><div></div><blockquote type="cite"><div>(define-syntax $</div><div>&nbsp; (lambda (stx)</div><div>&nbsp; &nbsp; (syntax-case stx ()</div><div>&nbsp; &nbsp; &nbsp; [(before ... $ after ...)&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp;#'(before bs ... (after as...))])))</div></blockquote><div><br></div><div>but this does not work, as I cannot have multiple ellipses in the pattern I match against in syntax-case.&nbsp;</div><div><br></div><div>I assume it is possible to write such a macro in Racket, but I am at a loss as to how.</div><div><br></div><div>Can anyone point me in the right direction, please?&nbsp;</div><div><br></div><div>Thanks,</div><div>-Spencer Gordon</div><div></div>
                </div>
                <div></div>