Cowsay.jl/src/cows/cower.cow.jl

19 lines
299 B
Julia
Raw Normal View History

##
## A cowering cow
##
function cower(;eyes="oo", tongue=" ", thoughts="\\")
the_cow =
"""
$thoughts
$thoughts
,__, | |
(oo)\\| |___
(__)\\| | )\\_
| |_w | \\
| | || *
Cower....
"""
return the_cow
end