Help for this page

Select Code to Download


  1. or download this
    # in my.conf file
    FOO   'this'
    ...
    Config::Simple->import_from("my.conf");
    # the following works fine
    print "$FOO\n";
    
  2. or download this
    # in my.conf file
    FOO   'this', 'that'
    ...
    
    Can't use string ("this") as an ARRAY ref while "strict refs" 
    in use at ./test.pl line 41, <FH> line 1.