Shared Tutorials New
Website Development
2D & 3D Graphics
Audio & Video Editing
Databases
Desktop Programming
Operating Systems
Business Applications
Miscellaneous
Selected Reading
© 2011 TutorialsPoint.COM
|
Shared Tutorials Directory
Tutorials Shared by the Community
-
This tutorial is an introductory look at the Perl language and its syntax.
http://www.codebeach.com/tutorials/perl-syntax.asp
Tutorial Statistics
Total Hits: 1438
Average Rating :     
Total Votes: 0 votes
Category: Perl & CGI/Getting Started
Submitted on: 2008-03-16 01:02:35
Submitted By: Devesh Khanna
Set as Favorite
This tutorial is an introductory look at the Perl language and its syntax.
Semicolons All Perl lines must end in semicolons. Perl does not use the carriage return to indicate the end of a line, it uses the semicolon.
$myName = "Jerry"; print "Hello, $myName\n"; More detail...
|
|
|