in reply to Re: subroutine inside subroutinein thread subroutine inside subroutine
That definition is too vague. There is no closure here-
sub outer { print "outer"; sub inner { print "inner" } } [download]
Just two package subs (in the same space).