A program that prints the elements of a list. : Array Item « Array « Perl






A program that prints the elements of a list.

    
#!/usr/local/bin/perl 

@array = (1, "chicken", 1.23, "\"Having fun?\"", 9.33e+23); 
$count = 1; 
while ($count <= 5) { 
    print ("element $count is $array[$count-1]\n"); 
    $count++; 
} 

   
    
    
    
  








Related examples in the same category

1.An array is an ordered list of scalars: strings and/or numbers.
2.Arrays: a collection of similar data elements
3.Print an element in a list of variables
4.Store various type values in an array
5.Append two arrays to form another array
6.Duplicate array elements
7.Mixed Lists
8.Mixed Data Assigned to Array Cells
9.Array Elements
10.Append to array
11.Get array last element
12.Creating and initializing an array with list assignment