Help for this page

Select Code to Download


  1. or download this
    my $s1 = 'Perl';
    my $s2 = 'Monks';
    my $s3 = "$s1$s2";
    print "$s3\n";
    # $s3 contains 'PerlMonks'
    
  2. or download this
    my $s3 = "${s1}${s2}";
    
  3. or download this
    {
       undef $";
    ...
       print "$s4\n";
       # $s4 contains 'abcde'
    }