Help for this page

Select Code to Download


  1. or download this
       my $value = getConfigValue( "use_foo" ) || 1;
    
  2. or download this
       my $value = getConfigValue( "use_foo" );
       if ( !defined( $value ) ) { $value = 1; }