Help for this page
if listElement in aList: ... do stuff ...
# 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 ... } }