Help for this page

Select Code to Download


  1. or download this
    my $x = 1;          # Variable declaration
    my $x = 10;         # Variable suicide!
    print $x;
    
  2. or download this
    my $x = 1;
    $x = 10;
    print $x;