Help for this page

Select Code to Download


  1. or download this
    Hash<...>* demonstration<...>(... a)
       Hash<...>* hash_ptr = new Hash<...>("demo_data", a);
    ...
          "demonstration_data", hash_ptr
       );
    }
    
  2. or download this
    sub demonstration {
       my %demonstration_data = ( demo_data => shift );
    ...
          demonstration_data => \%demonstration_data,
       };
    }
    
  3. or download this
    Hash<...>* demonstration<...>(... a)
       Hash<...> hash("demo_data", a);
    ...
          "demonstration_data", \hash    XXX BUG
       );
    }