9 lines
93 B
Scheme
9 lines
93 B
Scheme
(define (square x)
|
|
(* x x))
|
|
(define (cube x)
|
|
(* x x x))
|
|
|
|
(define (add a b)
|
|
(+ a b 1))
|
|
|