Help for this page

Select Code to Download


  1. or download this
    my @time = (1, 2, 3);
    my $counter = 5;
    my $s = "Today is $time[1] and you have seen this $counter times!";
    @messages=($s);
    foreach $m(@messages){print "$m\n";}
    
  2. or download this
    Today is 2 and you have seen this 5 times!