I've been bouncing around functional languages for the last few months from F# to Haskell to Scheme (Racket). I've never really used recursion much, but Haskell and its pattern matching really helped me to be less afraid of them. Now that I'm using Scheme, I seem to default to recursive methods. I'm curious if this is indicative of just going through an "ooo shiny!" phase or if recursion is a staple of Scheme development.
Side note: I've been shooting for tail recursion whenever I write recursive methods.