Help for this page

Select Code to Download


  1. or download this
      DB<9> sub bla { bless [@_], "Test" }
    
    ...
      DB<12> bla < bla
    Unterminated <> operator at (eval 20) ...
    
  2. or download this
      DB<13> package Test; use overload ">" => sub { warn "works" };
    
    
      DB<14> bla > bla
    works at (eval 21)