Skip to content

Instantly share code, notes, and snippets.

Created June 1, 2017 23:13
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save anonymous/bc6f0e583ff36d8c1274d0875fcdefc4 to your computer and use it in GitHub Desktop.
my $value = prompt "Enter value: ";
given $value {
when 0..9 { say "One digit" }
when $_ < 99 { say "Two digits" }
when /^\d**3$/ { say "Three digits" }
default { say "More than three digits" }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment