The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!perl 

# (c) 2002 by Murat Uenalan. All rights reserved. Note: This program is
# free software; you can redistribute it and/or modify it under the same
# terms as perl itself


use lib;

use Benchmark qw(:all);

cmpthese( 
	-5, 
	{
		':all' => 'use Data::Type qw(:all)',
		
		':all +BIO' => 'use Data::Type qw(:all +BIO)',
		
		':all +BIO +DB' => 'use Data::Type qw(:all +BIO +DB)',
		
		':all +BIO +DB +W3C' => 'use Data::Type qw(:all +BIO +DB +W3C)',
	}
);