Help for this page

Select Code to Download


  1. or download this
      print "$a$b$c\n";
      print $a, $b, $c, "\n";
    
  2. or download this
      my $s = $a . $b . $c . "\n";
      my $s = "$a$b$c\n";