<p dir="ltr">You need (require (for-syntax syntax/parse)) because you are using it inside a define-syntax. </p>
<div class="gmail_quote">On Sep 24, 2013 11:56 AM, "Konrad Hinsen" <<a href="mailto:konrad.hinsen@fastmail.net">konrad.hinsen@fastmail.net</a>> wrote:<br type="attribution"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Hi everyone,<br>
<br>
I am trying to learn about syntax-parse, starting with the introduction<br>
of the "Syntax" documentation.<br>
<br>
Unfortunately, the very first example given for the use of syntax-parse<br>
doesn't work in my Racket installation:<br>
<br>
   Welcome to Racket v5.90.0.9.<br>
   racket@> (require syntax/parse)<br>
   racket@> (define-syntax (mylet stx)<br>
                (syntax-parse stx<br>
                  [(_ ([var-id rhs-expr] ...) body ...+)<br>
                   #'((lambda (var-id ...) body ...) rhs-expr ...)]))<br>
   stdin::277: _: wildcard not allowed as an expression<br>
     in: (_ ((var-id rhs-expr) ...) body ...+)<br>
     errortrace...:<br>
     context...:<br>
      try-next<br>
      /Users/hinsen/Development/racket/pkgs/errortrace-pkgs/errortrace-lib/errortrace/errortrace-lib.rkt:480:4<br>
      /Users/hinsen/Applications/Racket/collects/racket/private/misc.rkt:87:7<br>
<br>
I tried replacing the wildcard by "mylet", but that only leads to another error<br>
message:<br>
<br>
   racket@> (define-syntax (mylet stx)<br>
                (syntax-parse stx<br>
                  [(mylet ([var-id rhs-expr] ...) body ...+)<br>
                   #'((lambda (var-id ...) body ...) rhs-expr ...)]))<br>
   stdin::842: ...: ellipses not allowed as an expression<br>
     in: ...<br>
     errortrace...:<br>
     context...:<br>
      try-next<br>
      /Users/hinsen/Development/racket/pkgs/errortrace-pkgs/errortrace-lib/errortrace/errortrace-lib.rkt:480:4<br>
      /Users/hinsen/Applications/Racket/collects/racket/private/misc.rkt:87:7<br>
<br>
Am I doing something wrong here? Or are the examples obsolete?<br>
<br>
Konrad.<br>
____________________<br>
  Racket Users list:<br>
  <a href="http://lists.racket-lang.org/users" target="_blank">http://lists.racket-lang.org/users</a><br>
</blockquote></div>