From c048c1270ad5e325a63435b0159d91b751eb334b Mon Sep 17 00:00:00 2001 From: "Thomas A. Christensen II" <25492070+MillironX@users.noreply.github.com> Date: Tue, 23 Nov 2021 11:37:13 -0600 Subject: [PATCH] Add blowfish cowfile Signed-off-by: Thomas A. Christensen II <25492070+MillironX@users.noreply.github.com> --- src/cows/blowfish.cow.jl | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 src/cows/blowfish.cow.jl diff --git a/src/cows/blowfish.cow.jl b/src/cows/blowfish.cow.jl new file mode 100644 index 0000000..91a0bc6 --- /dev/null +++ b/src/cows/blowfish.cow.jl @@ -0,0 +1,33 @@ +## +## Blowfish +## +function blowfish(;eyes="oo", tongue=" ", thoughts="\\") +the_cow = +""" + $thoughts + $thoughts + | . + . |L /| + _ . |\\ _| \\--+._/| . + / ||\\| Y J ) / |/| ./ + J |)'( | ` F`.'/ + -<| F __ .-< + | / .-'. `. /-. L___ + J \\ < \\ | | O\\|.-' + _J \\ .- \\/ O | | \\ |F + '-F -<_. \\ .-' `-' L__ + __J _ _. >-' )._. |-' + `-|.' /_. \\_| F + /.- . _.< + /' /.' .' `\\ + /L /' |/ _.-'-\\ + /'J ___.---'\\| + |\\ .--' V | `. ` + |/`. `-. `._) + / .-.\\ + VK \\ ( `\\ + `.\\ + +""" +return the_cow +end