#### Simple Regexp This example shows a simple ```Regexp```. ```show.rb```: ```ruby require 'debug_helper' regexp = Regexp.new(/\w+/) DebugHelper.show(regexp, 'My simple regexp') ``` The output shows details of the ```Regexp```. ```show.yaml```: ```yaml --- Regexp (message='My simple regexp'): to_s: "(?-mix:\\w+)" casefold?: false named_captures: {} encoding: !ruby/encoding US-ASCII fixed_encoding?: false ```