Scalars in List Context
- Scalars that don't appear to have an obvious list value are turned into one-element lists
@animals = 'gerbil';
# same as: @animals = ('gerbil');
- @cars = undef;
- One element array, still: (undef)
- Not the same as with @cars = ();