Help for this page

Select Code to Download


  1. or download this
     
    given( $ARGV[0] ) {
        when (/foo/i) {do this}
        when (/goo/i) {do that}
    }
    
  2. or download this
     
    given( $ARGV[0] ) {
        when (gw(/foo/i 0)) {do this}
        when (gw(/goo/i 1)) {do that}
    }