Help for this page
use strict; use warnings; ... print ${X()}, "\n"; print "${X()}${X()}\n"; # why does this behave print "${X()} ${X()}\n"; # differently from this?
1 2 ... 4 66 <--- why is this not 56? 7 8 <--- or why is this not 8 8?