Help for this page

Select Code to Download


  1. or download this
    for ($value) {
        when (1) { say "One!" }
        when (2) { say "Two!" }
        default  { say "Something!" }
    }
    
  2. or download this
    given ($value) {
        when (1) { say "One!" }
        when (2) { say "Two!" }
        default  { say "Something!" }
    }