I am learning Modern Perl. The perl file chapter5_2.pl have code :
#!/bin/perl
use v5.14.2;
use strict;
use Carp;
package main;
main();
sub main
{
show_call_information();
}
sub show_call_information
{
my ($package, $file, $line,$func) = caller(0);
say "Called $func from $package in $file:$line";
}
say "---------use Carp------------------";
say add_numbers(1,2,3);
sub add_numbers
{
croak 'Expected two numbers, received:' . @_
unless @_ == 2;
my ($one, $two) = @_;
return $one + $two;
}
I run as
perl chapter5_2.pl
get the following output:
Called main::show_call_information from main in chapter5_2.pl:13
---------use Carp------------------
Expected two numbers, received:3 at chapter5_2.pl line 28.
main::add_numbers(1, 2, 3) called at chapter5_2.pl line 24
I can't know why the main() function is called automatically? What's the mechanism?
How can I get result from formal document such as perldoc?
Thanks!
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.