Work on documenting CSV module and extending duck to support racket-kwargs.
This commit is contained in:
parent
a5afb25dd7
commit
4d81684cff
6 changed files with 53 additions and 16 deletions
10
src/duck.scm
10
src/duck.scm
|
@ -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)))
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue