Help for this page

Select Code to Download


  1. or download this
    $ perl -le '@x = qw(1 2 3); $x = 1; *y = *x; undef @x; print "$y [@y]"
    +'
    1 []
    
  2. or download this
    $ perl -le '@x = qw(1 2 3); $x = 1; *y = *x; undef *x; print "$y [@y]"
    +'
    1 [1 2 3]