Add meow cowfile
Signed-off-by: Thomas A. Christensen II <25492070+MillironX@users.noreply.github.com>
This commit is contained in:
parent
85e83e784d
commit
36252c4ac8
3 changed files with 41 additions and 0 deletions
|
@ -32,5 +32,6 @@ Cowsay.flaming_sheep
|
|||
Cowsay.fox
|
||||
Cowsay.kitty
|
||||
Cowsay.koala
|
||||
Cowsay.meow
|
||||
Cowsay.vader_koala
|
||||
```
|
||||
|
|
|
@ -16,6 +16,7 @@ include("cows/fox.cow.jl")
|
|||
include("cows/kitty.cow.jl")
|
||||
include("cows/koala.cow.jl")
|
||||
include("cows/mech-and-cow.cow.jl")
|
||||
include("cows/meow.cow.jl")
|
||||
include("cows/udder.cow.jl")
|
||||
include("cows/vader-koala.cow.jl")
|
||||
include("cows/vader.cow.jl")
|
||||
|
|
39
src/cows/meow.cow.jl
Normal file
39
src/cows/meow.cow.jl
Normal file
|
@ -0,0 +1,39 @@
|
|||
"""
|
||||
function meow()
|
||||
|
||||
A meowing tiger?
|
||||
|
||||
# Example
|
||||
```jldoctest
|
||||
julia> cowsay("We're kind of stupid that way", cow=Cowsay.meow)
|
||||
_______________________________
|
||||
< We're kind of stupid that way >
|
||||
-------------------------------
|
||||
\\
|
||||
\\ , _ ___.--'''`--''//-,-_--_.
|
||||
\\`"' ` || \\\\ \\ \\\\/ / // / ,-\\\\`,_
|
||||
/'` \\ \\ || Y | \\|/ / // / - |__ `-,
|
||||
/@"\\ ` \\ `\\ | | ||/ // | \\/ \\ `-._`-,_.,
|
||||
/ _.-. `.-\\,___/\\ _/|_/_\\_\\/|_/ | `-._._)
|
||||
`-'``/ / | // \\__/\\__ / \\__/ \\
|
||||
`-' /-\\/ | -| \\__ \\ |-' |
|
||||
__/\\ / _/ \\/ __,-' ) ,' _|'
|
||||
(((__/(((_.' ((___..-'((__,'
|
||||
```
|
||||
"""
|
||||
function meow(;eyes="oo", tongue=" ", thoughts="\\")
|
||||
the_cow =
|
||||
"""
|
||||
$thoughts
|
||||
$thoughts , _ ___.--'''`--''//-,-_--_.
|
||||
\\`"' ` || \\\\ \\ \\\\/ / // / ,-\\\\`,_
|
||||
/'` \\ \\ || Y | \\|/ / // / - |__ `-,
|
||||
/@"\\ ` \\ `\\ | | ||/ // | \\/ \\ `-._`-,_.,
|
||||
/ _.-. `.-\\,___/\\ _/|_/_\\_\\/|_/ | `-._._)
|
||||
`-'``/ / | // \\__/\\__ / \\__/ \\
|
||||
`-' /-\\/ | -| \\__ \\ |-' |
|
||||
__/\\ / _/ \\/ __,-' ) ,' _|'
|
||||
(((__/(((_.' ((___..-'((__,'
|
||||
"""
|
||||
return the_cow
|
||||
end
|
Loading…
Reference in a new issue