From 26fba4a469d2f600f5d456d7abba2ab419bf0f9c Mon Sep 17 00:00:00 2001 From: "Thomas A. Christensen II" <25492070+MillironX@users.noreply.github.com> Date: Tue, 23 Nov 2021 11:38:23 -0600 Subject: [PATCH] Add bunny cowfile Signed-off-by: Thomas A. Christensen II <25492070+MillironX@users.noreply.github.com> --- src/cows/bunny.cow.jl | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/cows/bunny.cow.jl diff --git a/src/cows/bunny.cow.jl b/src/cows/bunny.cow.jl new file mode 100644 index 0000000..4d15d97 --- /dev/null +++ b/src/cows/bunny.cow.jl @@ -0,0 +1,14 @@ +## +## A cute little wabbit +## +function bunny(;eyes="oo", tongue=" ", thoughts="\\") +the_cow = +""" + $thoughts + $thoughts \\ + \\ /\\ + ( ) + .( o ). +""" +return the_cow +end