CPU: Perl, Fall 2005 Perl, Week 3: More Arrays, Context, Subroutines, Lexical Variables #32

I Really, Really Want Scalar Context

@colors = qw( green orange magenta cyan );
print "I've got ", @colors, " colors!\n";
print "I've got ", scalar @colors, " colors!\n";
Copyright © 2005 Ian Langworth