Skip to content

Instantly share code, notes, and snippets.

@libert-xyz
Created August 13, 2016 00:41
Show Gist options
  • Select an option

  • Save libert-xyz/e474fa10c4d70c9b66318e022ebaa20d to your computer and use it in GitHub Desktop.

Select an option

Save libert-xyz/e474fa10c4d70c9b66318e022ebaa20d to your computer and use it in GitHub Desktop.
Ruby arrays
5.times {puts 'bizz buzz'}
beez by
beez by
beez by
beez by
beez by
=> 5
5.times do
puts 'bizz buzz'
end
beez by
beez by
beez by
beez by
beez by
=> 5
an = ['dog','cat']
an.each {|b| puts b}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment