I have this simple line of code (its all on one line)
print " The product of the first number:$firstNum and second number:$secNum is:$product\n";
I expect to see the output all on one line, but I get line brakes, why do I get line brakes ?
The real output is:
The product of the first number:7
and second number:5
is:35