Ruby Tutorial - Object Methods

  • + 0 comments
    def odd_or_even(number)
    
        # add your code here
        return number.even?
    
    end