Help for this page

Select Code to Download


  1. or download this
    my $f = Flub->new("Cheese is Good.");
    print $f->flubble() . "\n";
    $f->flubble("Cheese is Bad");
    print $f->flubble() . "\n";
    
  2. or download this
    #!/usr/bin/perl -w
    
    ...
        $f->flubble() . "\n";
    print "Trying to assign Cheese is Bad to \$f->{_flub}: " . 
        $f->flubble("Cheese is Bad ") . "\n";