Help for this page

Select Code to Download


  1. or download this
    my @masters = qw/ John Paul George Ringo /;
    
  2. or download this
    use strict;
    my @masters = qw/ John Paul George Ringo /;
    ...
            print "$_ is not master\n"
        }
    }
    
  3. or download this
    John is master
    George is master
    James is not master