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?
$ 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).
|
|---|