=over =item given EXPR BLOCK X =item given BLOCK C is analogous to the C keyword in other languages. C and C are used in Perl to implement C/C like statements. Only available after Perl 5.10. For example: use v5.10; given ($fruit) { when (/apples?/) { print "I like apples." } when (/oranges?/) { print "I don't like oranges." } default { print "I don't like anything" } } See L for detailed information. =back