- or download this
use strict;
use warnings;
...
say sort &get_keys(); # called:array:13
say sort @{[get_keys]}; # called:array:13
say sort @{[get_keys()]}; # called:array:13
- or download this
NAME(LIST); # & is optional with parentheses.
NAME LIST; # Parentheses optional if predeclared/import
+ed.
&NAME(LIST); # Circumvent prototypes.
- or download this
for my $type ( sort( filetypes_supported() ) ) {