List

106 9
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');
Source...
Subscribe to our newsletter
Sign up here to get the latest news, updates and special offers delivered directly to your inbox.
You can unsubscribe at any time

Leave A Reply

Your email address will not be published.