in reply to Re: How do I get a reference to a builtin function?
in thread How do I get a reference to a builtin function?

Please test your code before you offer it as a solution:
$ perl -wE 'my $t = sub { uc(@_)}; say $t->("foo")' 1

uc has a prototype which forces scalar context, so uc(@_) evaluates to the number of elements in @ (upper-cased).

Perl 6 - links to (nearly) everything that is Perl 6.