Skip to content

Instantly share code, notes, and snippets.

@yuchan
Created April 17, 2011 17:07
Show Gist options
  • Save yuchan/924236 to your computer and use it in GitHub Desktop.
Save yuchan/924236 to your computer and use it in GitHub Desktop.
you don't need break indents.
#! /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