Help for this page

Select Code to Download


  1. or download this
    sub Sa {
        foo();  # implicit return: foo() called in Sa() invocation context
    +.
    ...
        foo();  # foo() called in void context. no question.
        return;
        }