perl assign string on multiple lines -
I want to be able to specify the combination of multiple strings in one variable.
I 'looking for something like this:
$ variable = 123 $ string = "hello" + "this" + $ variable + "string" is; Is it possible to do something with these lines in Perl?
from:
additive operators
Binary + returns the sum of two numbers.
Binary - gives the difference of two numbers.
Binary . aligns two stars.
Therefore, you need to combine a string:
$ string = "Hello" "This is a". $ Variable "string";
Comments
Post a Comment