Saying stuff about stuff.

Ruby 1.9 Nested Methods

def toggle
  def toggle
    "subsequent times"
  end
  "first time"
end

Ruby 1.9: What to Expect