Материал из Wiki.crossplatform.ru
(Различия между версиями)
Версия 17:10, 26 мая 2010
Call each on a string with escape sequence
"foo\nbar".each { |x| puts x }
# foo
# bar
returning the length of each word
"In the early".split.each {
|p| print p.length, " "
}