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

30 lines
477 B
Julia

"""
function small()
A small cow, artist unknown
# Example
```jldoctest
julia> cowsay("A calf", cow=Cowsay.small)
________
< A calf >
--------
\\ ,__,
\\ (..)____
(__) )\\
||--|| *
```
"""
function small(;eyes="oo", tongue=" ", thoughts="\\")
if eyes == "oo"
eyes = ".."
end
the_cow =
"""
$thoughts ,__,
$thoughts ($eyes)____
(__) )\\
$tongue||--|| *
"""
return the_cow
end