Help for this page

Select Code to Download


  1. or download this
    {   my @store;
    
        sub put {
    ...
    
        sub get {
        return @store;    }}
    
  2. or download this
    %hash =(uno=>1, dos=>2);
    put(%hash);
    %hash=get();
    
  3. or download this
    my (@arr, $refarr);
    $arr[0]=1;
    $refarr=\@arr;
    
    put($refarr);
    $refarr=get();