Skip to content

Instantly share code, notes, and snippets.

@LuckOfWise
Forked from tochi/gist:7798779
Last active December 30, 2015 07:58
Show Gist options
  • Save LuckOfWise/7799107 to your computer and use it in GitHub Desktop.
Save LuckOfWise/7799107 to your computer and use it in GitHub Desktop.
keyword = "乾杯"
musician = "長渕剛"
big = "大きな"
your = "君"
now = "今"
day = "日"
hope = "たい"
row = "ろう"
['作詞:', '作曲:'].map{|w| w + musician}
"か#{hope}絆に 思いをよせて
語り尽くせぬ 青春の#{day}々
#{['傷つき', '喜び'].map{|w| anytime(w)}}
肩をたたきあった あの#{day}"
"あれから どれくら#{hope.reverse}ったのだ#{row}
沈む夕陽を いくつ数えた#{row}
故郷の友は #{now}でも#{your}の 心の中にいますか"
main_lyrics(keyword, your, big)
"キャンドルライトの中の二人を
#{now}こうして 目を細めてる
#{big}喜びと 少しのさみしさを
涙の言葉で歌い#{hope}"
"明#{day}の光を 身体にあびて
ふり返らずに そのまま行けばよい
#{['風に吹か', '雨に打た'].map{|w| by(w)}}
信じた愛に 背を向けるな"
2.times.each |i|
main_lyrics(keyword, your, big)
end
def main_lyrics(keyword, your, big)
"#{keyword}!今#{your}は人生の
#{big * 2} 舞台に立ち
遥か長い道のりを 歩き始めた
#{your}に幸せあれ!"
end
def anytime(keyword)
"時には#{keyword}"
end
def by(keyword)
"#{keyword}れても"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment