Help for this page

Select Code to Download


  1. or download this
    my %options;
    my $options->{'heredoc'} = '1';
    my $config_copy = ReadINI ($copy,%options);
    
  2. or download this
    # Create a hash called %options
    my %options;
    ...
    
    # Call ReadINI passing it $copy and  your %options hash.
    my $config_copy = ReadINI ($copy,%options);
    
  3. or download this
    $options{heredoc} = 1;