Help for this page

Select Code to Download


  1. or download this
    sub complaint { "Please be sure that $_[0] is installed first" }
    print complaint("XXX");
    
  2. or download this
    sub complaint {
    my %r = (
        en => "Please be sure that $_[0] is installed first",
    ...
    # ...
    $lang = "en";
    print complaint("XXX");