19 lines
640 B
Groovy
19 lines
640 B
Groovy
|
|
def expired='defunct'
|
||
|
|
def horse='stallion'
|
||
|
|
def christ='Jesus'
|
||
|
|
|
||
|
|
println """
|
||
|
|
Buffalo Bill's
|
||
|
|
${expired}
|
||
|
|
who used to
|
||
|
|
ride a watersmooth-silver
|
||
|
|
${horse}
|
||
|
|
and break onetwothreefourfive pigeonsjustlikethat
|
||
|
|
${christ}
|
||
|
|
|
||
|
|
he was a handsome man
|
||
|
|
and what i want to know is
|
||
|
|
how do you like your blueeyed boy
|
||
|
|
Mister Death
|
||
|
|
"""
|