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 |
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/perl | |
use strict; | |
use warnings; | |
use utf8; | |
binmode STDIN, ':utf8'; | |
binmode STDOUT, ':utf8'; | |
binmode STDERR, ':utf8'; |
NewerOlder