Help for this page

Select Code to Download


  1. or download this
    $ideal = any( 
      all("tall", "rich", "handsome"),
      all("rich", "old"),
      all("smart","Australian","rich")
    );
    
  2. or download this
    while (@features = get_description) {
      if (any(@features) eq $ideal) {
        print "True love";
      }
    }