6 lines
77 B
Racket
6 lines
77 B
Racket
(define a (lambda (b c) (+ b c)))
|
|
|
|
(define (b c) (+ c 5))
|
|
|
|
(+ (a 3 5) (b 9))
|