Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    package Szyewicki;
    
    print "Here at work, 'Robert' is $Robert, but over at the pool hall, '
    +Robert' is $PoolHall::Robert\n";
    
  2. or download this
    Here at work, 'Robert' is the darts expert, but over at the pool hall,
    + 'Robert' is the darts expert
    
  3. or download this
    use strict;
    use warnings;
    ...
    
    our ($Robert);
    print "Here at work, 'Robert' is $Robert, but over at the pool hall, '
    +Robert' is $PoolHall::Robert\n";