echo ()
echo()
echo ()
produces this:
()
()
Is it consistent with SOMETHING? We get two pairs of brackets (first and third). Why the middle one (second) is not producing anything? Why is first producing ().
echo () means "call echo with an empty tuple"
echo() means "call echo with no arguments"