Work on documenting CSV module and extending duck to support racket-kwargs.

This commit is contained in:
Dominik Pantůček 2023-07-04 22:31:53 +02:00
parent a5afb25dd7
commit 4d81684cff
6 changed files with 53 additions and 16 deletions

View file

@ -40,10 +40,20 @@
(define var val))
((_ (define/doc var doc val))
(define var val))
((_ (define/doc var doc arg (make-parameter val)))
(define var val))
((_ (define* var val))
(define* var val))
((_ (define*/doc var doc val))
(define* var val))
((_ (define (proc . args) expr ...))
(define (proc . args) expr ...))
((_ (define/doc (proc . args) doc expr ...))
(define (proc . args) expr ...))
((_ expr)
expr)))