ruby-uebungen/Assignment_013/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: Mixin benutzen

class Squares
  include Enumerable

  def initialize(max)
    @max = max
  end

  def each
    for i in 1..@max
      yield i ** 2
    end
  end
end

s = Squares.new(20)
s.each { |e| puts e }
s.first