On Wed, Jun 21, 2017 at 8:40 PM, Jon Zeppieri <[email protected]> wrote:
>
> #lang at-exp racket
>
> ;; normalize-keywords: string? -> string?
> #lang at-exp racket
>

Sorry, I made some bad edits here. Should have been:

#lang at-exp racket

;; normalize-keywords: string? -> string?
(define (normalize-keywords in)
 ...)


By the way, I failed to mention the point of `at-exp` in the #lang
line. That allows the module to use at-expressions, which, in this
case, I use for writing the first regexp, since they allow me to elide
a layer of escape syntax.

- Jon

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to