use Indent; our $indent = Indent->new( text => " ", eol => 1, level => 1 ); local $\ = "\n"; my @str = qw( down stairs to hell ); print($indent, "@str"); { local $indent = $indent; ( ++$indent )->printf($_) for ( @str ); } print($indent - 1, "there is no way");