Perl Programming/Keywords/else
Appearance
The else keyword
[edit | edit source]else is the keyword used to add an unconditional branch to an if … [end if] … statement.
Syntax
[edit | edit source] if EXPRESSION else EXPRESSION
Previous: each | Keywords | Next: elsif |
else is the keyword used to add an unconditional branch to an if … [end if] … statement.
if EXPRESSION else EXPRESSION
Previous: each | Keywords | Next: elsif |