diff --git a/src/cows/udder.cow.jl b/src/cows/udder.cow.jl new file mode 100644 index 0000000..6043bbb --- /dev/null +++ b/src/cows/udder.cow.jl @@ -0,0 +1,21 @@ +## +## The cow from a file called cow-n-horn, artist unknown. +## +function udder(;eyes="oo", tongue=" ", thoughts="\\") +eye1 = first(eyes) +eye2 = last(eyes) +botheyes = string(eye1, " ", eye2) +the_cow = +""" + $thoughts + $thoughts (__) + $botheyes\\ + ('') \\--------- + $tongue\\ \\ + | |\\ + ||---( )_|| * + || UU || + == == +""" +return the_cow +end