Home
@mathieuel
FB
linkedin
github
rss
It's all about tech
Micro Blog
Résumé – CV
Tech Life Stream
Array in ruby short tutorial: ruby way for ruby noobs
January 18, 2012
by Matt
arrays
,
code block
,
ruby
,
tutorial
0 Comment
Arrays in ruby the ruby way (with code blocks). Instanciate an array from words >> els = %w(one two three four five) => ["one", "two", "three", "four", "five"] Iterate over the array >> els.each { |e
Continue Reading →