- 1
Not quite. On one side, echo works as function, because the following input is valid:
echo("Hello", "\n", "World!");
output: Hello
World!
On the other hand, it works like Language Construction, so the following is valid too:
echo "Hello" . "\n" . "World!" . "\n";
output is the same.