; const1.scm - const combinator ; the const combinator ignores one of the arguments passed to a function ; ((const x) y) = x (define const (lambda (x) (lambda (y) x))) ((const 1) 2) ; 1 ((const 2) 1) ; 2
Text file Source (historic): geocities.com/soho/square/3472
geocities.com/soho/squaregeocities.com/soho
(to report bad content: archivehelp @ gmail)
|
|
|
|
|