Help for this page

Select Code to Download


  1. or download this
    sub bracket {
       local $_ = @_ ? $_[0] : $_;
    ...
          join ',',        # Seperate elements with commas.
          map quote,       # Quote elements.
          @arr;            # Elements.
    
  2. or download this
    sub quote {
       local $_ = @_ ? $_[0] : $_;
    ...
          join ',',          # Seperate elements with commas.
          map quote,         # Quote elements.
          @arr;              # Elements.