Sophie

Sophie

distrib > * > cooker > x86_64 > by-pkgid > f57e885c975f118841bca688e0c8e6e8 > files > 22

perl-CSS-1.90.0-1.noarch.rpm

use CSS;
use Data::Dumper;

print(('='x60)."\n");

my $css_l = new CSS({'parser' => 'CSS::Parse::Lite'});
$css_l->read_file("t/css_simple");
print $css_l->output();

print(('='x60)."\n");

my $css_l = new CSS({'parser' => 'CSS::Parse::Lite', 'adaptor' => 'CSS::Adaptor::Pretty'});
$css_l->read_file("t/css_simple");
print $css_l->output();

print(('='x60)."\n");

my $css_l = new CSS({'parser' => 'CSS::Parse::Lite', 'adaptor' => 'CSS::Adaptor::Debug'});
$css_l->read_file("t/css_simple");
print $css_l->output();

print(('='x60)."\n");