Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -l
    
    ...
    print for @emptyfiles;
    print "Biggest: $emptyfiles[0]";
    print "Next biggest: $emptyfiles[1]";
    
  2. or download this
    123
    1
    Biggest: 123
    Next biggest: 1
    
  3. or download this
    my ($biggest, $next_biggest) = @emptyfiles[0, 1];
    
  4. or download this
    $previous = ($emptyfile)-1);
    
  5. or download this
    $ perl -wE 'my $x; say($x - 1)'
    Use of uninitialized value $x in subtraction (-) at -e line 1.
    -1