MC logo

Hello Again

  Code Examples

<<Perl Hello, World! hello2.pl Scalar Variables>>
# Shows how single quotes differ from double quotes used in hello.pl
print 'Greetings, small planet!\n';
print q/What's cooking?\n/;
<<Perl Hello, World! Scalar Variables>>