in reply to Re^6: How to de-reference a coderef?
in thread How to de-reference a coderef?

Well, a trivial implementation of Sub is
sub Sub (&) { return shift }
but that doesn't do the blessing and overloading. You'll get to use the syntax of:
my $s = Sub { print +shift } $s->('hello');
just as I indicated before.

-- Randal L. Schwartz, Perl hacker
Be sure to read my standard disclaimer if this is a reply.