Help for this page

Select Code to Download


  1. or download this
    my $x = shift;
    
  2. or download this
    use experimental qw( refaliasing declared_refs );
    
    my \$x = \shift;
    
  3. or download this
    use Data::Alias qw( alias );
    
    alias my $x = shift;
    
  4. or download this
    our $x; local *x = \shift;