Help for this page

Select Code to Download


  1. or download this
    # The way it indents
    my %a = (
             a => 4,
             b => 4,
    );
    
  2. or download this
    # The way I'd like it to indent
    my %a = (
      a => 4,
      b => 4,
    );