Help for this page

Select Code to Download


  1. or download this
    package Abh::SimpleSet;
    
    ...
    
    # Must return true
    1;
    
  2. or download this
    use Abh::SimpleSet;
    
    ...
    $set2->add("e");
    $set2->add("f");
    print "Set 2: " . $set2->to_string() . "\n";
    
  3. or download this
    Set 1: (a, b, c)
    Set 2: (e, f, a, b, c, d)