Help for this page
my $template = <<END_HERE; Hi, %s. ... END_HERE my $text = sprintf( $template, $name, $color, $sig );
my ($name, $color, $sig); my $template = sub ... $color = 'blue'; $sig = 'c'; my $text = $template->();