What is "1"; in perl source?

Possible duplicate:
What does 1; mean in perl?

I am new to Perl and learning how to create a class with Perl.

As from this example: http://www.tutorialspoint.com/perl/perl_oo_perl.htm , I see a line that is written as "1;" just can't find information about this interesting line fromperldoc.perl.org

Do you know what it is? And why does it exist in Perl source code?

+5
source share
1 answer

, , (, ). , Perl , false, Perl .

, false, true .

perldocs :

true , , 1;, , true . 1;,

+7

All Articles