in reply to Override Data Display Method
package Donut; use overload ( '""' => \&stringify ); sub stringify { my $self = shift; return "Your string here"; } [download]