ルビー初心者です!次のことをしたいだけです:
module Functional
def filter
end
end
class Array
include Functional
def filter
end
end
a = [1, -2, 3, 7, 8]
puts a.filter{|x| x>0}.inspect # ==>Prints out positive numbers
Array のメソッド "filter" を変更するにはどうすればよいですか? 誰でも私を助けることができますか?ありがとうございました