Help for this page

Select Code to Download


  1. or download this
      DB<8> sub doit (&) { $_[0]->("para") }
     
      DB<9> $codeRef= sub { print @_ }
    ...
    para
      DB<11> &doit($codeRef)  # disable checking
    para