Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
(define (number n) (cond [(< n 10) 5.0] [(< n 20) 5] [(< n 30) true]))
最後にelseステートメントを追加するにはどうすればよいですか?
[else false])
ありがとう。
このような:
(define (number n) (cond [(< n 10) 5.0] [(< n 20) 5] [(< n 30) true] [else false]))
覚えておいてください -else節 (存在する場合) は、condフォームの最後の節でなければなりません。明示的に記述されておらず、条件が満たされていない場合は、 then#<void>が返されます。
else
cond
#<void>