cowsay icon indicating copy to clipboard operation
cowsay copied to clipboard

Maybe add set of functions to "build up" the output of say?

Open sckott opened this issue 1 year ago • 0 comments

e.g., instead of

say("Hello world!")

something like this might make sense?

utter("Hello world!", "blue") %>%
  who("cat", "red")

or possibly even build up the "tail" of the bubble (the thought symbols that lead from animal to bubble) like

utter("Hello world!", "blue") %>%
  tail("&") %>% # yes I know tail is taken, but this is pseudocode
  who("cat", "red")

in my mind this wouldn't replace say but be an additional flow

sckott avatar Nov 03 '24 04:11 sckott