Help for this page

Select Code to Download


  1. or download this
    my $attr = $foo->attr; 
    print "Attribute is $attr\n";
    ...
    print "Attribute is ". $foo->attr ."\n";
    
    print "Attribute is @{[$foo->attr]}\n";
    
  2. or download this
    use strict;
    use warnings;
    ...
    The Foo object's attr attribute is: foo
    Calling Foo's Repeater(3) method yeilds: foo foo foo