Help for this page

Select Code to Download


  1. or download this
    sub foo { return 3+$a };
    $a = 1;
    $a = foo($a) and print $a;
    
  2. or download this
    $\ = "\n";
    my $x = 12;
    ...
      print $x;
    }
    print $x;
    
  3. or download this
    my $x = 123;
    {
      my $x = 45 and print $x;
    }