Add tests for blowfish cowfile
Signed-off-by: Thomas A. Christensen II <25492070+MillironX@users.noreply.github.com>
This commit is contained in:
parent
9f6b2b0394
commit
90e0fd88db
2 changed files with 39 additions and 3 deletions
|
@ -4,4 +4,5 @@ Examples of all the cowfiles available.
|
|||
|
||||
```@docs
|
||||
Cowsay.default
|
||||
Cowsay.blowfish
|
||||
```
|
||||
|
|
|
@ -1,6 +1,41 @@
|
|||
##
|
||||
## Blowfish
|
||||
##
|
||||
"""
|
||||
function blowfish()
|
||||
|
||||
A blowfish.
|
||||
|
||||
```jldoctest
|
||||
julia> cowsay("Bloop, bloop", cow=Cowsay.blowfish)
|
||||
______________
|
||||
< Bloop, bloop >
|
||||
--------------
|
||||
\\
|
||||
\\
|
||||
| .
|
||||
. |L /|
|
||||
_ . |\\ _| \\--+._/| .
|
||||
/ ||\\| Y J ) / |/| ./
|
||||
J |)'( | ` F`.'/
|
||||
-<| F __ .-<
|
||||
| / .-'. `. /-. L___
|
||||
J \\ < \\ | | O\\|.-'
|
||||
_J \\ .- \\/ O | | \\ |F
|
||||
'-F -<_. \\ .-' `-' L__
|
||||
__J _ _. >-' )._. |-'
|
||||
`-|.' /_. \\_| F
|
||||
/.- . _.<
|
||||
/' /.' .' `\\
|
||||
/L /' |/ _.-'-\\
|
||||
/'J ___.---'\\|
|
||||
|\\ .--' V | `. `
|
||||
|/`. `-. `._)
|
||||
/ .-.\\
|
||||
VK \\ ( `\\
|
||||
`.\\
|
||||
|
||||
|
||||
|
||||
```
|
||||
"""
|
||||
function blowfish(;eyes="oo", tongue=" ", thoughts="\\")
|
||||
the_cow =
|
||||
"""
|
||||
|
|
Loading…
Reference in a new issue