You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Cowsay.jl/src/cows/koala.cow.jl

35 lines
478 B
Julia

"""
function koala
From the canonical koala collection
# Example
```jldoctest
julia> cowsay("Welcome to Down Under", cow=Cowsay.koala)
_______________________
< Welcome to Down Under >
-----------------------
\\
\\
___
{~._.~}
( Y )
()~*~()
(_)-(_)
```
"""
function koala(;eyes="oo", tongue=" ", thoughts="\\")
the_cow =
"""
$thoughts
$thoughts
___
{~._.~}
( Y )
()~*~()
(_)-(_)
"""
return the_cow
end