Help for this page

Select Code to Download


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