- or download this
sub setPhrase {
my $self = shift;
...
my $self = shift;
return $self->{phrase};
}
- or download this
sub Phrase {
my $self=shift;
$self->{phrase}=shift if @_;
return $self->{phrase}
}
- or download this
sub Phrase {
my $self=shift;
...
}
return $self->{phrase}
}
- or download this
my $dump=Data::Dumper->new([$foo])->Terse(1)->Purity(0)->Names(['foo']
+)->Dump()
- or download this
my $saver = Saver::Database->new($db, $user, $pass);
- or download this
$quote1->setPhrase($phrase);
$quote1->setAuthor($author);
- or download this
$quote1->Quote($phrase,$author);
- or download this
$quote->Set(phrase=>$phrase,author=>$author);