以下のcase文で、シンボルを使う理由として最も適切なものはどれですか? ```ruby case status when :pending puts "処理中" when :completed puts "完了" end ```