Help for this page

Select Code to Download


  1. or download this
    sub { @_[0..$#_] = qw/r s t/ }->(values %hash);
    
  2. or download this
    sub lvalues (\%) : lvalue { values %{$_[0]} }
    (lvalues %hash) = qw/i j k/;  # works!
    
  3. or download this
    (lvalues %hash) = shuffle values %hash;