in reply to Package problem with defining subroutines

You've got infinite loop
  • Comment on Re: Package problem with defining subroutines

Replies are listed 'Best First'.
Re^2: Package problem with defining subroutines
by AlfaProject (Beadle) on Feb 05, 2013 at 15:55 UTC
    I know, but how I can prevent it by design ?
    For example you have DB.pm which all modules uses it .
    Then a User.pm and UserRating.pm , that using each other for retrieving info
    Reading posts from #1 reply (tnx)

      Refactor, break the circle

      sub tst1 { mutual_util(); ... } sub tst2 { mutual_util(); ... }

      Take whatever tst1 does that calls tst2, take whatever test2 does that calls tst1 , make it a new function, and instead of calling each other, call this third function