# frozen_string_literal: true

#
# Toy program for testing binding.pry initialization
#

new_str = "string".gsub(/str/) do |_|
  binding.pry
end

_foo = new_str
