sub get_content { my $name = shift; my $content; ($content = <<" END") =~ s/^\s{1,4}//gm;

$name

END return $content; } print get_content("stuff");