1234567
#!/usr/bin/perluse strict;use warnings;my $ref = [ qw/foo bar buz/ ];print scalar @{$ref}, "\n";