in reply to Re: Re: A subroutine is a reference to a list of statements
in thread A subroutine is a reference to a list of statements
... or some such thing.&hello = sub { print "Hello, " }; &hello.syntree[0][1] .= "world!\n"; hello(); # prints "Hello, world!"
|
|---|