Help for this page

Select Code to Download


  1. or download this
    my $newfirst=();
        for ( my $i=0;$i < $Numfirst;$i++) {
    ...
        }
    
    print "new first name is $newfirst\n";
    
  2. or download this
    my $NewFirst= join(" ", 'Billy', 'Bob', 'Allan');
    print "new first name is $NewFirst\n";