3 lines
90 B
Scheme
3 lines
90 B
Scheme
> (define (func f) (f 1 2))
|
|
> (begin (display (func (lambda (x y) (+ x y)))) (newline))
|
|
3
|