Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
      use warnings;
    ...
      my $venn_chart = Venn::Chart->new( 500, 500 ) or die("error : $!"); 
    +  
    
    (B) my $venn_chart = Venn::Chart->new( 500, 500,1 ) or die("error : $!
    +");
    
  2. or download this
    sub new {
      my ( $self, $width, $height ) = @_;
    ...
    -----
    -----
    }