Help for this page

Select Code to Download


  1. or download this
    sub A {
        return $_[0] x 2 . ' (from A)';
    ...
        my $arg = shift;
        return "B got $arg as argument\n";
    }
    
  2. or download this
    print B(A("c")),"\n";
    
  3. or download this
    B got cc (from A) as argument