Concrete Context
- All expressions in Perl return something useful (to someone) for whatever context
- Arrays in scalar context return the number of elements in the array
@colors = qw( blue green red yellow ); @backwards = reverse @colors; $hamster = @backwards + 84;
- This is not the case for every list context