3 lines
74 B
Text
3 lines
74 B
Text
(define (sum a b) (+ a b))
|
|
; instead of
|
|
(setq sum (lambda (a b) (+ a b)))
|
(define (sum a b) (+ a b))
|
|
; instead of
|
|
(setq sum (lambda (a b) (+ a b)))
|