Skip to content

Instantly share code, notes, and snippets.

@Masa331
Last active August 29, 2015 14:25
Show Gist options
  • Save Masa331/ff1e915a8f6f12f9b97d to your computer and use it in GitHub Desktop.
Save Masa331/ff1e915a8f6f12f9b97d to your computer and use it in GitHub Desktop.
Simple internal iterator
class PrimeNumbers
def self.each
yield 1
yield 2
yield 3
yield 5
yield 7
yield 11
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment