Skip to content

Instantly share code, notes, and snippets.

@ynonp
Created March 25, 2012 22:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ynonp/2200399 to your computer and use it in GitHub Desktop.
Save ynonp/2200399 to your computer and use it in GitHub Desktop.
given/when bug
use v5.14;
my $foo = 13;
given ( $foo ) {
when ( 1..10 ) { say "small" }
when ( 11..20 ) { say "medium" }
when ( 21..30 ) { say "large" }
default { say "unknown" }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment