Help for this page

Select Code to Download


  1. or download this
    <<HERE              # Double quoted
    <<"HERE"            # Double quoted, explicit.
    ...
    <<~'HERE'           # Single quoted, indented.
    <<~\HERE            # Single quoted, indented, uncommonly used (I'll b
    +et you could grep all of CPAN and not find this).
    <<~`HERE`           # Same as qx / ``, indented.
    
  2. or download this
    <<~/HERE/x           # Regexp object, indented, multi-line freeform (/
    +x modifier).