Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
       three => 'Chapter 3: CCC',
    };
    say "We start with $chapters->{noe}";   # Compiler neither gives an er
    +ror, nor a warning.
    
  2. or download this
    package chapters;
    our $one = 'Chapter 1: AAA';
    ...
    use strict;
    use warnings;
    say "We start with $chapters::noe";  # Compile time error.