Help for this page

Select Code to Download


  1. or download this
    $x=\1;
    $y=$$x;        # equivalent to $y = 1, i.e. a copy
    $y++;
    print $y;      #> 2
    
  2. or download this
    sub swap {
      my ($a, $b) = \(@_);
    ...
     
      return;
    }