Cowsay.jl/src/cows/fox.cow.jl

51 lines
1.3 KiB
Julia
Raw Normal View History

"""
function fox()
# Example
```
julia> cowsay("What does the fox say?", cow=Cowsay.fox)
________________________
< What does the fox say? >
------------------------
\\ ,-. .-,
\\ |-.\\ __ /.-|
\\ \\ ` ` /
/_ _ \\
< _`q p _ >
<.._=/ \\=_. >
{`\\()/`}`\\
{ } \\
|{ } \\
\\ '--' .- \\
|- / \\
| | | | | ;
| | |.;.,..__ |
.-"";` `|
/ | /
`-../____,..---'`
```
"""
function fox(;eyes="oo", tongue=" ", thoughts="\\")
the_cow =
"""
$thoughts ,-. .-,
$thoughts |-.\\ __ /.-|
$thoughts \\ ` ` /
/_ _ \\
< _`q p _ >
<.._=/ \\=_. >
{`\\()/`}`\\
{ } \\
|{ } \\
\\ '--' .- \\
|- / \\
| | | | | ;
| | |.;.,..__ |
.-"";` `|
/ | /
`-../____,..---'`
"""
return the_cow
end