ruby-uebungen/Assignment_036/solution
Thomas Smits 58bc23516c Update of exercises 2023-05-25 17:49:42 +02:00
..
readme.md Update of exercises 2023-05-25 17:49:42 +02:00

readme.md

Lösung: Eigenclass einer Klasse

class Numeric
  class << self
    def to_binary(n)
      n.to_s(2)
    end
  end
end

puts Numeric::to_binary(47)

Alternative Lösung:

class << Numeric
  def to_binary(n)
    n.to_s(2)
  end
end

puts Numeric::to_binary(47)