1. Computing

List

From , former About.com Guide

Definition: A perl list is an ordered group of scalars. They are contained in a single row, or list, and can be accessed as a whole, or individually via their numeric values as scalars. The list is assigned an array name, preceded by the @ character. The array name may only contain letters, numbers, or the underscore character.
 @myList = (1, 2, 3);
 @list_of_names = ('Larry', 'Curly', 'Moe'); 
  1. About.com
  2. Computing
  3. Perl
  4. Perl Tutorials
  5. Perl Glossary
  6. List

©2013 About.com. All rights reserved.