Blame README

Packit ff3280
NAME
Packit ff3280
    Set::Infinite - Sets of intervals
Packit ff3280
Packit ff3280
SYNOPSIS
Packit ff3280
      use Set::Infinite;
Packit ff3280
Packit ff3280
      $a = Set::Infinite->new(1,2);    # [1..2]
Packit ff3280
      print $a->union(5,6);            # [1..2],[5..6]
Packit ff3280
Packit ff3280
INSTALLATION
Packit ff3280
Packit ff3280
To install this module type the following in the distribution
Packit ff3280
directory:
Packit ff3280
Packit ff3280
   perl Makefile.PL
Packit ff3280
   make
Packit ff3280
   make test
Packit ff3280
   make install
Packit ff3280