# `gno.land/p/moul/x/daily/cowsay/v0` **cowsay** — `Say(msg string) string` returns the classic ASCII cow with a speech bubble containing `msg`. Pure deterministic string art: the message is word-wrapped into a speech balloon (single line uses `< >`, multi-line uses `/ \ | |` borders) with the happy cow stacked underneath. Port of cowsay by Tony Monroe (1999); no `os`/`exec`, no chain coupling. ```go import "gno.land/p/moul/x/daily/cowsay/v0" art := cowsay.Say("Hello, gno.land!") // bubble + cow, ready for a code block cowsay.Say("") // default message ("Moo!") ``` **Live demo:** [`r/moul/x/daily/cowsaydemo`](https://github.com/moul/gno-contracts/tree/main/r/moul/x/daily/cowsaydemo/v0) · render it at [`/r/moul/x/daily/cowsaydemo/v0`](https://gno.land/r/moul/x/daily/cowsaydemo/v0). --- Part of **[moul/gno-contracts](https://github.com/moul/gno-contracts)** — moul's versioned gno.land contracts. See the repository for the full catalog, build/test tooling, and usage. > 🧪 **Highly experimental — potentially vibe-coded.** Not audited; may break, change, or be removed at any time. Do not use with anything of value. Full disclaimer: [DISCLAIMER](https://github.com/moul/gno-contracts/blob/main/DISCLAIMER.md).