Help for this page
sub func { print("f-pre: $_[0], $_[1]\n"); ... print("pre: $x, $y\n"); func($x, $y); print("post: $x, $y\n");
pre: 3, 4 f-pre: 3, 4 f-post: 5, 6 post: 5, 6