class AllVowels @@vowels = %w{a e i o u} def each @@vowels.each { |v| yield v } endendx = AllVowels.newx.each { |v| puts v }