On Wednesday, October 14, 2015 at 3:50:44 PM UTC, Neil Van Dyke wrote:
>      (foo :abc 1 :xyx 42)

What I want is implicit keyword names for arguments with defaults. So instead 
of:

(define (foo #:bar? (bar? #f) #:foo (foo 42) #:some-variable-name 
(some-variable-name 3)) ...)

and (foo #:bar? #t)

we would have:

(define (foo (bar? #f) (foo 42) (some-variable-name 3))

It's the keyworded define and lambda syntax that I find sloppy and ugly.

-- 
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 racket-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to