Help for this page

Select Code to Download


  1. or download this
    my $a = 1;
    my $b = 2;
    $a && $b = 3;
    
  2. or download this
    use strict;
    use warnings;
    ...
    my $y = 5;
    a($x && $y);
    print "$x\n";