Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
        'GroupID1' => true,
        'GroupID2' => false
    );
    
  2. or download this
    Bareword "true" not allowed while "strict subs" in use
    Bareword "false" not allowed while "strict subs" in use
    
  3. or download this
    my %groups = (
        'GroupID1' => \1,
        'GroupID2' => \0
    );