What does the colon mean in the following Perl program?
MAIN: {
print "Hello\n";
}
|
feedback
|
|
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. | |||||||||
feedback
|
|
The colon is a required separator of a label from the following block. From perlsyn:
| ||||
|
feedback
|