diff --git a/src/cows/dragon.cow.jl b/src/cows/dragon.cow.jl new file mode 100644 index 0000000..58e1b5b --- /dev/null +++ b/src/cows/dragon.cow.jl @@ -0,0 +1,25 @@ +## +## The Whitespace Dragon +## +function dragon(;eyes="oo", tongue=" ", thoughts="\\") +the_cow = +""" + $thoughts / \\ //\\ + $thoughts |\\___/| / \\// \\\\ + /0 0 \\__ / // | \\ \\ + / / \\/_/ // | \\ \\ + \@_^_\@'/ \\/_ // | \\ \\ + //_^_/ \\/_ // | \\ \\ + ( //) | \\/// | \\ \\ + ( / /) _|_ / ) // | \\ _\\ + ( // /) '/,_ _ _/ ( ; -. | _ _\\.-~ .-~~~^-. + (( / / )) ,-{ _ `-.|.-~-. .~ `. + (( // / )) '/\\ / ~-. _ .-~ .-~^-. \\ + (( /// )) `. { } / \\ \\ + (( / )) .----~-.\\ \\-' .~ \\ `. \\^-. + ///.----..> \\ _ -~ `. ^-` ^-_ + ///-._ _ _ _ _ _ _}^ - - - - ~ ~-- ,.-~ + /.-~ +""" +return the_cow +end