$string .= "someoutput"; $string .= "someotheroutput"; # logic here $string .= "moreoutput"; print $string; #### print "someoutput", "someotheroutput"; # loging here print "moreoutput";