Help for this page

Select Code to Download


  1. or download this
    while ( ($key, $value) = each %hash ) {
      print "$key => $value\n";
    }
    
  2. or download this
    use 5.010;
    
    say '[', scalar (3..4), ']';
    ...
    say '[', scalar @c, ']';
    
    say '[', scalar 3..4, ']';
    
  3. or download this
    []
    []
    [5]
    ...
    [2]
    [4]
    [34]