let tortilla = returnBurrito (Some Veggie, [])
return Burrito
Also somewhat familiar with FP but not this specific language (guessing Haskell?), is the `>==` operator essentially a "pipe" operator?
`return` is a specific function of a Monad, and it is not used like the keyword "return" in other imperative languages.
Also somewhat familiar with FP but not this specific language (guessing Haskell?), is the `>==` operator essentially a "pipe" operator?