What does the colon mean in the following Perl program?
MAIN: {
print "Hello\n";
}
|
|
|
It separates a label ( In Perl, a label is always suffixed with a colon, so you might argue the colon is part of the label. |
|||||||||
|
|
The colon is a required separator of a label from the following block. From perlsyn:
|
||||
|
|