Help for this page

Select Code to Download


  1. or download this
    
    my $ini_path = qw( /home/bob/Documents/html_template_data/3.values.ini
    + );
    ...
      qw( /home/bob/Documents/meditations/castaways/translate/data
    );
    
  2. or download this
    my $ini_path = '/home/bob/Documents/html_template_data/3.values.ini';
    
  3. or download this
    my ( $ini_path ) = qw( /home/bob/Documents/html_template_data/3.values
    +.ini );
    
  4. or download this
    if ( $prompt1 eq ( "y" | "Y" ) ) {
      show_lang_codes();
    }
    
  5. or download this
    $ perl -le'use Data::Dumper; my $x = ( "y" | "Y" ); print Dumper $x'
    $VAR1 = "y";
    
  6. or download this
    if ( $prompt1 eq "y" || $prompt1 eq "Y" ) {
      show_lang_codes();
    }
    
  7. or download this
    if ( lc $prompt1 eq "y" ) {
      show_lang_codes();
    }
    
  8. or download this
    if ( $prompt1 =~ /\Ay\z/i ) {
      show_lang_codes();
    }