Months Of The Year : Array Output « Array « Perl






Months Of The Year

   

#!/usr/bin/perl
use warnings;
use strict;
my $month = 3;
print qw(January February March April May June July August September October November December)[$month];

   
    
    
  








Related examples in the same category

1.Output the whole array in print
2.A program that prints every element of an array.
3.Print each value in the array.
4.Output nested array
5.Output all elements in an array with print command
6.Output the last element in the array
7.Output the number of elements and the last index number
8.print "@{[uc(hello)]} there.\n";