Help for this page

Select Code to Download


  1. or download this
    my @list = qw( wuhn tew thuree foah DONE whateva you know);
    for my $i (0..10) {
      last if ($list[$i] eq 'DONE');
    }
    print "final index: $i\n";
    
  2. or download this
    print $t if (my $t = shift);
    
  3. or download this
    $t = shift;
    print $t;
    my $t;