Cowsay.jl/src/cows/tux.cow.jl
Thomas A. Christensen II 1c3998c7d1
Add tux cowfile
Signed-off-by: Thomas A. Christensen II <25492070+MillironX@users.noreply.github.com>
2021-11-23 17:26:28 -06:00

42 lines
630 B
Julia

##
##
"""
function tux()
TuX
(c) pborys@p-soft.silesia.linux.org.pl
# Example
```jldoctest
julia> cowsay("Talk is cheap. Show me the code.", cow=Cowsay.tux)
__________________________________
< Talk is cheap. Show me the code. >
----------------------------------
\\
\\
.--.
|o_o |
|:_/ |
// \\ \\
(| | )
/'\\_ _/`\\
\\___)=(___/
```
"""
function tux(;eyes="oo", tongue=" ", thoughts="\\")
the_cow =
"""
$thoughts
$thoughts
.--.
|o_o |
|:_/ |
// \\ \\
(| | )
/'\\_ _/`\\
\\___)=(___/
"""
return the_cow
end