Help for this page

Select Code to Download


  1. or download this
    my %display = (
        english => {
    ...
            # vert is green, but I forgot the word for blue ;-)
        }
    }
    
  2. or download this
    my $scr_display = $display{spanish};
    print  $scr_display->{red}, "\n";      # prints rojo
    
    # Now switch to a different language
    $scr_display = $display{french};
    print $scr_display->{red}, "\n";       # prints rouge