Skip to content

Instantly share code, notes, and snippets.

@perilstar
Created August 29, 2017 13:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save perilstar/620b2a468d25bb43382e3ba8aaaeea02 to your computer and use it in GitHub Desktop.
Save perilstar/620b2a468d25bb43382e3ba8aaaeea02 to your computer and use it in GitHub Desktop.
Toaster created by ekyl - https://repl.it/DBZp/0
def toaster str
case str
when "bread"
"toast"
when "toast"
"extra crispy toast"
when "bagel"
"pizza"
when "poptart"
"cooked poptart"
when "struedel"
"yum"
else
"burnt " + str
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment