Help for this page

Select Code to Download


  1. or download this
    $Indent = 2 unless defined $Indent;
    
  2. or download this
      if ($Indent > 0) {
        $s->{xpad} = "  ";
        $s->{sep} = "\n";
      }
    
  3. or download this
    $VAR1 = [          'a',          'b',          'c'        ];
    
  4. or download this
    $VAR1 = ['a','b','c'];
    
  5. or download this
    use Data::Dumper;
    
    ...
    my $a = ["a", "b", "c"];
    
    print Dumper($a);