Help for this page

Select Code to Download


  1. or download this
    sub foo { say 42 }
    &foo.wrap: { say 'before'; callsame; say 'after' }
    foo;
    
  2. or download this
    before
    42
    after