in reply to Can a large subroutine be split in two (e.g. parent and child relationship)?

Alternatively, you could get an editor which supports folding. In vim you could do it like this:
sub foo { # {{{ variables my ($var1, $var2); # }}} # {{{ actions bar($var1, $var2) until $var1; # }}} } # vim: set foldmethod=marker:
  • Comment on Re: Can a large subroutine be split in two (e.g. parent and child relationship)?
  • Download Code