Help for this page

Select Code to Download


  1. or download this
    my ($a, $b, $c) = (1, 2, 3);
    
  2. or download this
    my $a;
    my $b = "";
    print "\$a is not defined\n" unless defined $a;
    print "\$b is defined\n" if defined $b;