Help for this page

Select Code to Download


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