What does the colon mean in the following Perl program?

MAIN: {
    print "Hello\n";
}
link|improve this question

feedback

2 Answers

up vote 15 down vote accepted

It separates a label (MAIN) from a block (the stuff between curly braces).

In Perl, a label is always suffixed with a colon, so you might argue the colon is part of the label.

link|improve this answer
Thanks all upvoters: you've earned me the "Enlightened" badge! :-D – JB. Sep 2 '09 at 13:51
3  
"...you might argue the colon is part of the label," except that you don't use a colon when you refer to the label. For example, it's redo MAIN; not redo MAIN:;, so it's not a very good argument. – cjm Sep 5 '09 at 23:09
Ok, let's argue its part of the "labeling" then. FWIW, I personally don't think it's a great argument either, but the wording of the questions kind of begged for it. – JB. Sep 6 '09 at 19:32
feedback

The colon is a required separator of a label from the following block.

From perlsyn:

The LABEL is optional, and if present, consists of an identifier followed by a colon

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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