The racket guide introduces functions with keyword arguments:
(define (F
When we use it, we need to associate a specific value with an argument:
(F
But in the same manual there is an example of a keyword argument without a value :
(struct posn (x y)
#:transparent)
Is it possible to create such flag arguments for programmers, or is this obviously an internal function?
source
share