Subject: | Colon format can't handle spaces |
Try this program:
#!/usr/bin/perl -wT
use strict;
use warnings;
use diagnostics;
use Config::Auto;
use Data::Dumper;
my $config = Config::Auto::parse;
print Dumper($config);
With this file:
files: a = b
And you get an error about an uninitialized variable. Removing the
spaces around the equals sign fixes this.