(define (square x)
(display (* x x)))
(define (sum-of-squares a b)
(+ (square a) (square b)))
テストしましたが、sum-of-squares
機能が動作しません。なんで?
(define (square x)
(display (* x x)))
(define (sum-of-squares a b)
(+ (square a) (square b)))
テストしましたが、sum-of-squares
機能が動作しません。なんで?