Help for this page

Select Code to Download


  1. or download this
    sub f { &g; print @_; } sub g { $_[0] .= "o, w"; push @_, "orld\n"; } 
    +f($x = "hell");
    
  2. or download this
    sub f { g(@_); print @_; } sub g { $_[0] .= "o, w"; push @_, "orld\n";
    + } f($x
    = "hell");