Help for this page

Select Code to Download


  1. or download this
    if listElement in aList:
       ... do stuff ...
    
  2. or download this
    # Do stuff if $list_element is in @a_list
    if ($list_element =~ @a_list) {
    ...
      # If not in @a_list, what about @other_list ?
      when @other_list  { ... do stuff ... }  
    }