Possible Duplicate:
What does 1; mean in Perl?

I'm new to Perl and learning how to build a class with Perl.

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

Do you know what it is? And why is it there in the Perl source code?

link|improve this question

67% accept rate
feedback

closed as exact duplicate by Quentin, Amir Rachum, mu is too short, Mat, daxim Apr 3 '11 at 9:51

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

up vote 6 down vote accepted

A module is normally a bunch of subroutine definitions, but it can also include code that is not in a subroutine (such as initialisation code). This code might fail, so Perl lets you indicate this by returning false whereupon Perl aborts with an error.

However, since the default return value is false, we must explicitly return true at the end of a module.

The perldocs have this to say:

The file must return true as the last statement to indicate successful execution of any initialization code, so it's customary to end such a file with 1; unless you're sure it'll return true otherwise. But it's better just to put the 1; , in case you add more statements

link|improve this answer
i see, thanks mr wood – nicola Apr 3 '11 at 8:50
so it's the return value when calling 'require' to the file – nicola Apr 3 '11 at 8:54
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.