This is the mail archive of the guile@cygnus.com mailing list for the guile project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: An optional arguments interface


OK, there was a bug in my proposal, it should be:

Mikael Djurfeldt <mdj@nada.kth.se> writes:

(lambda (a b . args)
  (letarg args ((c <c-default>)
	   (d)
           e)
    (if (bound? d)
        ...)
    ...))

/mdj