Created
April 17, 2011 17:07
-
-
Save yuchan/924236 to your computer and use it in GitHub Desktop.
you don't need break indents.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env ruby | |
class Poem | |
def initialize | |
@text = <<-END.gsub(/^\s+/,'') | |
この支配からの卒業 | |
(尾崎豊) | |
END | |
end | |
def shout | |
puts @text | |
end | |
end | |
Poem.new.shout |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment