Help for this page

Select Code to Download


  1. or download this
    my $x = 'string';
    my $x = 17;
    
  2. or download this
    my $x = 5;
    $x += 1;
    print $x;
    
  3. or download this
    my $x = 5;
    $x += 1;
    print 5;