Cowsay.jl/src/cows/moose.cow.jl
Thomas A. Christensen II ad5f481222
Add moose cowfile
Signed-off-by: Thomas A. Christensen II <25492070+MillironX@users.noreply.github.com>
2021-11-23 16:42:04 -06:00

31 lines
591 B
Julia

"""
function moose()
# Example
```jldoctest
julia> cowsay("Time to vamoose", cow=Cowsay.moose)
_________________
< Time to vamoose >
-----------------
\\
\\ \\_\\_ _/_/
\\ \\__/
(oo)\\_______
(__)\\ )\\/\\
||----w |
|| ||
```
"""
function moose(;eyes="oo", tongue=" ", thoughts="\\")
the_cow =
"""
$thoughts
$thoughts \\_\\_ _/_/
$thoughts \\__/
($eyes)\\_______
(__)\\ )\\/\\
$tongue ||----w |
|| ||
"""
return the_cow
end