Hello, I was wondering if Racket's struct instances can be initialized with keywords, like in the following example written in CL:
* (defstruct foo bar baz) FOO * (make-foo :bar 1 :baz 2) #S(FOO :BAR 1 :BAZ 2) Best regards, Dmitry ____________________ Racket Users list: http://lists.racket-lang.org/users

