diff --git a/src/cows/dragon-and-cow.cow.jl b/src/cows/dragon-and-cow.cow.jl new file mode 100644 index 0000000..9219ca5 --- /dev/null +++ b/src/cows/dragon-and-cow.cow.jl @@ -0,0 +1,25 @@ +## +## A dragon smiting a cow, possible credit to kube@csua.berkeley.edu +## +function dragon_and_cow(;eyes="oo", tongue=" ", thoughts="\\") +the_cow = +""" + $thoughts ^ /^ + $thoughts / \\ // \\ + $thoughts |\\___/| / \\// .\\ + $thoughts /O O \\__ / // | \\ \\ *----* + / / \\/_/ // | \\ \\ \\ | + \@___\@` \\/_ // | \\ \\ \\/\\ \\ + 0/0/| \\/_ // | \\ \\ \\ \\ + 0/0/0/0/| \\/// | \\ \\ | | + 0/0/0/0/0/_|_ / ( // | \\ _\\ | / + 0/0/0/0/0/0/`/,_ _ _/ ) ; -. | _ _\\.-~ / / + ,-} _ *-.|.-~-. .~ ~ + \\ \\__/ `/\\ / ~-. _ .-~ / + \\____($eyes) *. } { / + ( (--) .----~-.\\ \\-` .~ + //__\\\\ \\__ Ack! ///.----..< \\ _ -~ + // \\\\ ///-._ _ _ _ _ _ _{^ - - - - ~ +""" +return the_cow +end