String concatenation: Difference between revisions

Content added Content deleted
m (move PHP)
No edit summary
Line 755: Line 755:
say $s;</lang>
say $s;</lang>
Note also that most concatenation in Perl is done implicitly via interpolation.
Note also that most concatenation in Perl is done implicitly via interpolation.

=={{header|PHL}}==

<lang>module stringcat;

extern printf;

@Integer main [
var a = "hello";
var b = a + " literal";
printf("%s\n", b);

return 0;
]


=={{header|PHP}}==
=={{header|PHP}}==