open (CONF, ">$conffile"); print CONF<## $config->define('option1', { DEFAULT => "default text" } ); $config->define('option1', { DEFAULT => "other text" } ); #### open (CONF, ">$conffile"); print CONF "option1 = ", $config->option1(), "\n"; print CONF "option2 = ", $config->option2(), "\n"; close CONF; #### $config->option1('Specified through GUI'); &CreateConfigFile;