- or download this
#!/usr/bin/perl -w
...
package Bar;
sub new {bless ['barbar'], $_[0]};
use overload '""' => sub {return $_[0]->[0]};
- or download this
before: Foo
object: barbar
...
before: Foo
object: barbar
after: Bar
- or download this
before: Foo
object: barbar
...
before: Bar
object: barbar
after: Bar