Skip to content

Instantly share code, notes, and snippets.

View Shmuwol's full-sized avatar
🤓
Geekin'

Shmully Wolfson Shmuwol

🤓
Geekin'
View GitHub Profile
@Shmuwol
Shmuwol / Enumerable_cycle.md
Last active August 29, 2015 14:17
Enumerable#cycle.rb
days_of_week = ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"]

Now if we do this.

days_of_week.cycle {|day| puts day}

it will return all the days of the week over and over, forever.