Help for this page

Select Code to Download


  1. or download this
    my $a = 1;
    my $b = 0;
    my $c = $a and $b;
    print $c;
    
  2. or download this
    my $a = (1==1);
    my $b = (1==0);
    my $c = $a and $b;
    print $c;