以下では、どちらも同じものを出力します。< ではなく <<-END のように、<< の後に - を付けるという点がよくわかりません
class Poem
def initialize
@text = <<END
"Faith" is a fine invention
When Gentlemen can see
But Microscopes are prudent
In an Emergency.
(Emily Dickinson 1830-1886)
END
end
def recite
puts @text
end
end
poem = Poem.new
poem.recite
class Poem1
def initialize
@text = <<-END
"Faith" is a fine invention
When Gentlemen can see
But Microscopes are prudent
In an Emergency.
(Emily Dickinson 1830-1886)
END
end
def recite
puts @text
end
end
poem1 = Poem1.new
poem1.recite