Language Basics Perl

#!/usr/local/bin/perl 
$a = "hello"; 
$b = "there"; 
$, = " "; 
$\ = "\n"; 
print ($a, $b);