I've got a subroutine: calcPercentage. I want to print the value returned by this subroutine.
Can I do this in a single line, similar to this:
print "Result is: $calcPercentage($a,$b)"
|
I've got a subroutine: Can I do this in a single line, similar to this:
|
|||
|
|
|
The best way to do this is to pass the function call as one of the arguments to But if, for some reason, you want the result of a function call to be expanded inside a string literal, as
See this question. Again, this is not particularly useful if you're just using
|
|||
|
|
execution is below:
|
|||
|
|
|
I sometimes do this using a
Unrelatedly on a stylistic note, the usual naming convention in perl is |
|||
|
|