diff --git a/src/Cowsay.jl b/src/Cowsay.jl index 1ebdd92..c17919a 100644 --- a/src/Cowsay.jl +++ b/src/Cowsay.jl @@ -81,6 +81,13 @@ function cowsay(message::AbstractString; cow=default, eyes="oo", tongue=" ") println(string(balloon, cow(eyes=eyes, tongue=tongue))) end +""" + cowthink(message::AbstractString; kwargs...) + +Print an ASCII picture of a cow thinking `message` + +See [`cowsay`](@ref) +""" function cowthink(message::AbstractString; cow=default, eyes="oo", tongue=" ") balloon = thinkballoon(message) println(string(balloon, cow(eyes=eyes, tongue=tongue, thoughts="o")))