use 5.010; use strict; use warnings; use lib "."; use Test; my $t = new Test( fname => "fred", appended => "this_is_appended_string"); say $t->fname; say $t->appended; $t->appended ('another_string'); say $t->appended;