http://www.perlmonks.org?node_id=994844


in reply to Re^2: How can we interpolate an expression??
in thread How can we interpolate an expression??

my $number = 5; my $multiplier = 3; # Use print instead of "say" print "Product is ", $number * $multiplier, "\n"; #this does not work... #"say" has limitations... say "Product is ", $number * $multiplier; __END__ Product is 15
"Say" will add a \n to a simple string. More complex things require "print" or "printf".