##
\&func # gives you a reference to a function
\func() # gives you a reference to the return value of func
####
sub func { "the string"; }
print \&func, "\n"; # prints CODE(0x814d990)
print \func(), "\n"; # prints SCALAR(0x813aa8c)