Help for this page

Select Code to Download


  1. or download this
    # First array
    # This array could contain any number of items
    my @firstArray = ( "item1", "item2", "item3" );
    
  2. or download this
    # Results array
    my @results = (
    ...
    );
    # Note: [ "item1", "item2" ] & [ "item2", "item1" ]
    # should be considered as the same.